    body {
        margin: 0;
        padding: 40px;
        height: 100vh;
        font-family: Verdana, sans-serif;
        background: linear-gradient(to right, #00b894, #0984e3);
        display: flex;
        background-color: #f0f0f0;
        justify-content: center;
        align-items: center;
    }

    .login-container {
        background-color: #ffffff;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        width: 100%;
        max-width: 400px;
        text-align: center;
    }

    .login-container .logo {
        width: 100px;
        margin-bottom: 15px;
    }

    .login-container {
        position: relative;
        background-color: #fff;
        padding: 60px 30px 30px 30px; /* Ajoute de l’espace en haut */
        max-width: 400px;
        margin: auto;
        border-radius: 10px;
        box-shadow: 0px 0px 10px #ccc;
        text-align: center;
    }


    .kargozen {
        color: #00b894;
    }

    .error-message {
        color: red;
        margin-bottom: 15px;
        font-weight: bold;
    }

    .input-group {
        display: flex;
        align-items: center;
        background-color: #f1f1f1;
        border: 1px solid #b2bec3;
        border-radius: 5px;
        padding: 10px;
        margin-bottom: 15px;
    }

    .input-group .icon {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }

    .input-group input {
        flex: 1;
        border: none;
        background: transparent;
        outline: none;
        font-size: 14px;
    }

    .submit-btn {
        width: 100%;
        padding: 12px;
        background-color: #00b894;
        border: none;
        color: white;
        font-weight: bold;
        font-size: 16px;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .submit-btn:hover {
        background-color: #019874;
    }

    .avatar-wrapper {
        position: absolute;
        top: -60px; /* remonte un peu plus pour équilibrer */
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        background-color: #f0f0f0; /* même couleur que le fond de la page */
        width: 120px;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0 0 8px rgba(0,0,0,0.15); /* petit effet sympa */
    }

    .user-avatar {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border: none;
        border-radius: 0; /* si tu veux un carré sinon garde border-radius: 50% */
    }

    .pagination {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .pagination a {
      padding: 8px 14px;
      border: 1px solid #ccc;
      border-radius: 8px;
      background-color: #f9f9f9;
      color: #333;
      text-decoration: none;
      font-weight: 500;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .pagination a:hover {
      background-color: #e0e0e0;
    }

    .pagination a.active {
      background-color: #007bff;
      color: #fff;
      border-color: #007bff;
      font-weight: bold;
    }

    .page-container {
      max-width: 1000px;
      width: 90%;
      margin: 0 auto;
      padding: 40px;
      background-color: #ffffff;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .main-content {
      text-align: center;
    }

    .form-title {
      font-size: 24px;
      margin-bottom: 20px;
      color: #00b894;
    }

    .client-form {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 30px;
    }

    .form-row {
      display: flex;
      flex-direction: column;
      flex: 1 1 30%;
    }

    .form-row label {
      margin-bottom: 5px;
      font-weight: bold;
      color: #2d3436;
    }

    .form-row input,
    .form-row select {
      padding: 10px;
      border: 1px solid #b2bec3;
      border-radius: 8px;
      background-color: #f1f1f1;
      outline: none;
      font-size: 14px;
    }

    .btn-submit,
    .btn-reset {
      padding: 10px 20px;
      border: none;
      border-radius: 8px;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .btn-submit {
      background-color: #00b894;
      color: white;
    }

    .btn-submit:hover {
      background-color: #019874;
    }

    .btn-reset {
      background-color: #dfe6e9;
      color: #2d3436;
    }

    .btn-reset:hover {
      background-color: #b2bec3;
    }

    /* Résultats de recherche */
    .result-table-container {
      margin-top: 30px;
      text-align: left;
    }

    .result-table {
      width: 100%;
      border-collapse: collapse;
    }

    .result-table th,
    .result-table td {
      padding: 12px 10px;
      border: 1px solid #dcdde1;
      text-align: left;
    }

    .result-table th {
      background-color: #00b894;
      color: white;
      font-weight: bold;
    }

    .result-table tr:nth-child(even) {
      background-color: #f9f9f9;
    }

    .btn-link {
      color: #0984e3;
      text-decoration: none;
      font-weight: bold;
    }

    .btn-link:hover {
      text-decoration: underline;
    }

    /* Message vide */
    .info-message {
      color: #d63031;
      font-weight: bold;
      text-align: center;
      margin-top: 20px;
    }


