    body {
      background-color: #f8f9fa;
      font-family: "Poppins", sans-serif;
    } 



    .user-menu {
      position: relative;
      display: inline-block;
    }

    .user-toggle {
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      color: #222;
      font-weight: 500;
      background: #fff;
      border-radius: 10px;
      padding: 8px 14px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      transition: 0.3s;
    }

    .user-toggle:hover {
      background: #f1f1f1;
    }

    .user-toggle i {
      font-size: 20px;
    }

    .menu-dropdown {
      display: none;
      position: absolute;
      top: 120%;
      right: 0;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      min-width: 150px;
      z-index: 100;
      animation: fadeIn 0.2s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-5px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .menu-item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 15px;
      cursor: pointer;
      transition: 0.2s;
      color: #333;
    }

    .menu-item i {
      font-size: 18px;
    }

    .menu-item:hover {
      background-color: #f4f6fb;
    }

    .menu-item.logout {
      color: #e63946;
      font-weight: 500;
    }

    .menu-item.logout:hover {
      background-color: #fde8e8;
    }

    .card {
      border: none;
      border-radius: 16px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      margin-bottom: 1.5rem;
    }
    .btn-primary {
      background-color: #004d40;
      border: none;
    }
    .btn-primary:hover {
      background-color: #00796b;
    }
    .logo {
      font-weight: bold;
      font-size: 22px;
      color: #00c853;
    }

        .section-title {
      font-weight: 700;
      font-size: 1.3rem;
      margin-bottom: .75rem;
    }
    .profile-pic {
      width: 80px;
      height: 80px;
      border-radius: 12px;
      background-color: #eee;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .profile-pic i {
      font-size: 2rem;
      color: #aaa;
    }
    .profile-pic .camera {
      position: absolute;
      bottom: -8px;
      right: -8px;
      background: #fff;
      border-radius: 50%;
      padding: 5px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    .btn-edit, .btn-delete {
      background: none;
      border: none;
      color: #555;
    }
    .btn-delete { color: #dc3545; }
    .divider {
      border-top: 1px solid #eee;
      margin: 1rem 0;
    }
    .link-editar {
      font-size: 0.9rem;
      color: #6c63ff;
      text-decoration: none;
      font-weight: 500;
    }


  #esqueceuSenhaForm .alert,
   #alterarSenhaForm .alert {
      display: none;
      margin-top: 15px;
    }

    .voltar-login a {
      color: #4a6cf7;
      text-decoration: none;
      font-weight: 500;
    }

    .voltar-login a:hover {
      text-decoration: underline;
    }