:root
{
  --bs-gutter-x: 0.75rem;
}

/* Fin ajout CSS */

body
{
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #ffffff;
}
.logo img {
    height: 60px;
}

#account-access-process--container
{
  width: 313px;
  margin: auto;;
}
.header--container {
    background-color: #86cb3a;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
}
.section--container
{
    margin: 2rem auto;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    height: 350px;
    max-width: 45%;
    background-color: #f9f9f9;
}

.dashboard-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

.team-name--header {
    font-size: 1.8rem;
    margin: 1rem 0;
    color: #35424a;
    text-align: center;
}

.connected-user {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: #35424a;
    text-align: center;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 1000px;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.stat-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    margin: 0.5rem;
    width: 200px;
    text-align: center;
}

.stat-card h3 {
    margin-top: 0;
    color: #35424a;
}

.stat-card p {
    font-size: 1.2rem;
    color: #e74c3c;
}

.autocomplete-container {
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  width: 31%;
  z-index: 1000;
}

.autocomplete-item {
  padding: 0.5rem;
  cursor: pointer;
}

.autocomplete-item:hover {
  background-color: #f0f0f0;
}

.admin--table
{
    caption-side: bottom;
    border-collapse: collapse;
    border-color: #dee2e6;
}

.admin--table tbody,
.admin--table td,
.admin--table tfoot,
.admin--table th,
.admin--table thead,
.admin--table tr
{
    border-color: #dee2e6;
    border-style: solid;
    border-width: 1px;
    padding: 0.5rem;
}

/* Notification Styles */
.notification--acknowledge--checkbox:hover + label {
    color: gray;
    cursor: pointer;
}
.notification {
    border-radius: 5px;
    border-left: 5px solid gray;
    border-right: 5px solid gray;
    text-align: center;
    font-weight: bold;
}
.notification:hover {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
.notification--new_team_member
{
    background-color: #ebb667;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.notification--role_change
{
    background-color: #cff4fc;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}