/* Navbar */



.navbar-nav .nav-link {
    font-weight: 500;
    margin-left: 10px;
}

.navbar-brand {
    font-size: 1.5rem;
}



/* Login  */
.login-card {
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    background: #f8f9fa;
    margin-top: 60px;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
  }
  .login-card .card-title {
    font-weight: 700;
    color: #1976d2;
    letter-spacing: 1px;
  }
  .login-card .btn-primary {
    background: linear-gradient(90deg, #1976d2 0%, #42a5f5 100%);
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background 0.2s;
  }
  .login-card .btn-primary:hover {
    background: linear-gradient(90deg, #1565c0 0%, #1976d2 100%);
  }
  .login-card .form-control:focus {
    border-color: #1976d2;
    box-shadow: 0 0 0 0.2rem rgba(25, 118, 210, 0.15);
  }
  .login-card .text-center a {
    color: #1976d2;
    text-decoration: underline;
    font-size: 0.97rem;
  }






/* Register */
    .register-card {
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    background: #f8f9fa;
    margin-top: 60px;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
  }
  .register-card .card-title {
    font-weight: 700;
    color: #1976d2;
    letter-spacing: 1px;
  }
  .register-card .btn-primary {
    background: linear-gradient(90deg, #1976d2 0%, #42a5f5 100%);
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background 0.2s;
  }
  .register-card .btn-primary:hover {
    background: linear-gradient(90deg, #1565c0 0%, #1976d2 100%);
  }
  .register-card .form-control:focus {
    border-color: #1976d2;
    box-shadow: 0 0 0 0.2rem rgba(25, 118, 210, 0.15);
  }
  .register-card .text-center a {
    color: #1976d2;
    text-decoration: underline;
    font-size: 0.97rem;
  }



/*Edit patient.html*/
  .edit-patient-card {
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(25,118,210,0.10);
    background: #f8f9fa;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    margin-bottom: 2rem;
  }
  .edit-patient-title {
    font-weight: 700;
    color: #1976d2;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
  }
  .edit-patient-label {
    color: #1976d2;
    font-weight: 600;
  }
  .image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
  }
  .image-grid img {
    width: 200px;
    height: auto;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 8px rgba(25,118,210,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: zoom-in;
    background: #fff;
  }
  .image-grid img:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(25,118,210,0.18);
  }
  .section {
    margin-top: 30px;
  }
  .edit-patient-btns a, .edit-patient-btns button {
    margin-right: 10px;
    margin-bottom: 10px;
  }

/* Landing Page Styles */
.hero-section {
  background:
    radial-gradient(1200px 400px at -10% -20%, rgba(25,118,210,.08), transparent 50%),
    radial-gradient(900px 300px at 120% -10%, rgba(76,175,80,.08), transparent 50%),
    linear-gradient(180deg, #fff 0%, #fff 80%, #f7f9fc 100%);
}
.hero-wave { position:absolute; left:0; right:0; bottom:-1px; line-height:0; }
.hero-wave svg { width:100%; height:90px; display:block; }

.hero-card { border:1px solid rgba(0,0,0,.06); }
.quick-tile {
  display:block; background:#f8f9fb; border:1px solid #eef1f6; border-radius:12px; padding:10px 12px;
  text-decoration:none; color:inherit; transition:all .15s ease;
}
.quick-tile .icon { width:36px; height:36px; border-radius:8px; display:grid; place-items:center; font-size:18px; }
.quick-tile .label { font-weight:600; margin-top:6px; }
.quick-tile:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(0,0,0,.06); }

.feature-card {
  background:#fff; border:1px solid rgba(0,0,0,.06); border-radius:16px; padding:18px;
  transition: box-shadow .15s ease, transform .15s ease;
}
.feature-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.06); }
.feature-icon {
  width:44px; height:44px; border-radius:10px; display:grid; place-items:center; font-size:20px; margin-bottom:10px;
}

@media (min-width: 992px) {
  .py-lg-6 { padding-top:4.5rem !important; padding-bottom:4.5rem !important; }
}
