@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

.welcome-section {
  position: relative;
  color: white;
  text-align: center;
  min-height: calc(100vh - 80px); /* Adjust height to fit the viewport */
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/homebg.png") no-repeat center center;
  background-size: cover;
}

.welcome-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.welcome-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.welcome-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.welcome-subtitle {
  font-size: 2rem;
  margin-bottom: 3rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* .welcome-buttons .btn {
  font-size: 1.5rem;
  padding: 1rem 2rem;
  margin: 0 1rem;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.welcome-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
} */

/* Hero Section Styles */
.hero-section {
  background: linear-gradient(rgba(76, 159, 162, 0.9), rgba(76, 159, 162, 0.9)),
    url("../images/homebg.png");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 55px 50px 15px;
  margin-bottom: 1rem;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 40px;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #e0f2f1;
}

.search-form {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 24px 20px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

/* ---------- Login Card Styles ---------- */
.login-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: #fff;
  margin-top: 2rem;
}

.login-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.login-card .card-header {
  background-color: #4c9fa2;
  color: #fff;
  border-bottom: none;
  padding: 1.5rem;
  text-align: center;
}

.login-card h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  margin: 0;
}

.login-card .card-body {
  padding: 2rem;
}

.login-card .form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 2.25rem 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.login-card .form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #4c9fa2;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(76, 159, 162, 0.25);
  position: relative;
  z-index: 1;
}

.login-card .input-group {
  position: relative;
}

.login-card .password-toggle-icon {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  cursor: pointer;
  color: #495057;
  z-index: 100;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.login-card .password-toggle-icon:hover {
  color: #4c9fa2;
}

.login-card .btn-primary {
  background-color: #4c9fa2;
  border-color: #4c9fa2;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  width: 100%;
}

/* ---------- Register Card Styles ---------- */
.register-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: #fff;
  margin-top: 2rem;
}

.register-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.register-card .card-header {
  background-color: #4c9fa2;
  color: #fff;
  border-bottom: none;
  padding: 1.5rem;
  text-align: center;
}

.register-card h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  margin: 0;
}

.register-card .card-body {
  padding: 2rem;
}

.register-card .form-label {
  font-weight: 500;
  color: #343a40;
  margin-bottom: 0.5rem;
  display: block;
}

.register-card .form-control,
.register-card .form-select {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.register-card .form-control:focus,
.register-card .form-select:focus {
  color: #495057;
  background-color: #fff;
  border-color: #4c9fa2;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(76, 159, 162, 0.25);
}

.register-card .input-group {
  position: relative;
}

.register-card .password-toggle-icon {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  cursor: pointer;
  color: #495057;
  z-index: 100;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.register-card .password-toggle-icon:hover {
  color: #4c9fa2;
}

.register-card .btn-primary {
  background-color: #4c9fa2;
  border-color: #4c9fa2;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  width: 100%;
}

.register-card .btn-primary:hover {
  background-color: #3e8588;
  border-color: #3e8588;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.register-card .alert-warning {
  background-color: #fff3cd;
  border-color: #ffeeba;
  color: #856404;
  border-radius: 0.25rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.register-card .text-primary {
  color: #4c9fa2 !important;
  font-weight: 500;
  text-decoration: none;
}

.register-card .text-primary:hover {
  text-decoration: underline;
}

/* Header Styles */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: #eefeff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Base Styles */
html,
body {
  height: 100%;
  margin: 0;
}

body {
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  font-family: "Poppins", sans-serif;
  flex: 1 0 auto;
  margin-bottom: 140px;
}

/* Navigation Styles */
.navbar-brand {
  padding: 0.5rem 0;
}

.brand-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #2a2a2a;
}

.nav-link {
  color: #4a5568 !important;
  font-weight: 500;
  padding: 0.75rem 1.25rem !important;
  margin: 0 0.25rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link .fas.fa-bell {
  font-size: 1.2rem;
  color: #2a2a2a;
  transition: color 0.3s ease;
}

.nav-link .fas.fa-bell:hover {
  color: #4c9fa2;
}

.nav-link:hover {
  color: #4c9fa2 !important;
  background: #f7fafc;
  transform: translateY(-2px);
}

.logout-btn {
  background: #f44336;
  color: white !important;
  border-radius: 8px;
  padding: 0.75rem 1.5rem !important;
}

.logout-btn:hover {
  background: #d32f2f;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(76, 159, 162, 0.2);
}

@media (max-width: 991px) {
  .navbar-collapse {
    padding: 1rem 0;
  }

  .nav-link {
    margin: 0.25rem 0;
  }
}

/* Form Styles */
.form-control {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #4c9fa2;
  box-shadow: 0 0 0 3px rgba(76, 159, 162, 0.1);
}

.form-label {
  color: #4a5568;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Alert Styles */
.alert-success {
  background-color: #d1fae5;
  border-color: #34d399;
  color: #065f46;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
}

.welcome-buttons .btn {
  font-size: 1.2rem;
  padding: 12px 30px;
  margin: 0 10px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.welcome-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.text-primary {
  color: #4c9fa2 !important;
}

hr {
  border-color: #e5e7eb;
  opacity: 0.5;
  margin: 2rem 0;
}

/* Apartment Card Styles */
.apartment-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  background: #ffffff;
}

.apartment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card-img-container {
  overflow: hidden;
  position: relative;
  border-radius: 12px 12px 0 0;
}

.card-img-top {
  height: 240px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.apartment-card:hover .card-img-top {
  transform: scale(1.05);
}

.apartment-card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 1rem;
}

.apartment-details {
  margin-bottom: 1rem;
}

.apartment-details p {
  margin-bottom: 0.5rem;
  color: #555;
}

.location {
  font-size: 1.1rem;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #3b82f6;
}

.bedrooms,
.bathrooms,
.sqft {
  font-size: 1rem;
}

.bedrooms i,
.bathrooms i,
.sqft i,
.location i,
.price i {
  margin-right: 0.5rem;
  color: #4c9fa2;
}

.primary-icon {
  color: #4c9fa2;
}

.section-heading {
  color: #4c9fa2;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
/* Section Text - contact*/
.section-text {
  font-size: 1.5rem;
  font-weight: 300;
  color: #4a5568;
  margin-bottom: 50px;
}

.btn-details {
  background-color: #4c9fa2;
  color: #fff;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}

.btn-details:hover {
  background-color: #3e8588;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.landlord-text {
  color: #636363;
  font-size: 1.1rem;
  font-weight: 700;
}

.btn-details {
  background-color: #4c9fa2;
  color: #fff;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}

.btn-details:hover {
  background-color: #3e8588;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Enhanced Apartment Details Styles */
.property-image {
  border-radius: 12px 12px 0 0;
  transition: transform 0.3s ease;
}

.property-image:hover {
  transform: scale(1.02);
}

.card {
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-header {
  border-radius: 12px 12px 0 0 !important;
  font-family: "Poppins", sans-serif;
}

.property-description {
  border-bottom: 1px solid #eee;
  padding-bottom: 2rem;
}

.amenities-section ul li {
  font-size: 1rem;
  font-weight: 500;
  color: #4a5568;
}

.badge-primary {
  background-color: #4c9fa2 !important;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.display-4 {
  font-family: "Playfair Display", serif;
  color: #2a2a2a;
}

.lead {
  font-size: 1.1rem;
  font-weight: 300;
}

.sticky-top {
  z-index: 1;
}

.btn-primary {
  background-color: #4c9fa2;
  border-color: #4c9fa2;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background-color: #3e8588;
  box-shadow: 0 4px 15px rgba(76, 159, 162, 0.3);
}

.text-secondary {
  color: #718096 !important;
}

.list-unstyled li {
  padding: 0.5rem 0;
}

@keyframes pulseHeart {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Apartment Details Page Styles */
.apartment-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.apartment-location {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.apartment-id,
.apartment-posted {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 0.25rem;
}

.apartment-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.apartment-sidebar {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.rent-title {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.rent-amount {
  font-size: 1.8rem;
  font-weight: bold;
  color: #4c9fa2;
  margin-bottom: 0.25rem;
}

.apartment-type {
  font-size: 1rem;
  color: #888;
  margin-bottom: 1rem;
}

#inquiryForm .form-group {
  margin-bottom: 1rem;
}

#inquiryForm label {
  font-weight: bold;
}

#inquiryForm textarea {
  resize: vertical;
}

#inquiryForm button[type="submit"] {
  margin-top: 1rem;
}

/* apartment detailes text  */

.d-flex {
  display: flex;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-start {
  align-items: flex-start;
}

.apartment-title,
.apartment-location,
.apartment-id,
.apartment-posted {
  margin-bottom: 0.5rem;
}

.rent-title,
.rent-amount,
.apartment-type {
  text-align: right;
}

/* ---------- Carousel Control Styles ---------- */

.carousel-control-prev,
.carousel-control-next {
  background: none;
  border: none;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: transparent;
  width: 30px;
  height: 30px;
  color: #4c9fa2;
}

.carousel-control-prev-icon:focus,
.carousel-control-next-icon:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(76, 159, 162, 0.6);
}

/* ---------- Forgot Password Card Styles ----------*/

.forgot-password-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(20vh - 50px);
}

.forgot-password-card {
  max-width: 900px;
  width: 600px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: #408587;
}

.forgot-password-card .card-header {
  background-color: #408587;
  border-bottom: none;
  padding: 1.5rem;
  text-align: center;
}

.forgot-password-card h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.75rem;
  color: white;
  margin: 0;
}

.forgot-password-card .card-body {
  padding: 2rem;
}

.forgot-password-card .form-group {
  margin-bottom: 1.5rem;
}

.forgot-password-card input {
  width: 100%;
  margin-bottom: 0;
  margin-top: 5rem;
}

.forgot-password-card .btn-primary {
  width: 100%;
  background-color: #4c9fa2;
  color: #fff;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border: none;
}

.forgot-password-card .btn-primary:hover {
  background-color: #3e8588;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.forgot-password-card .alert-info {
  background-color: #e7f3fe;
  color: #31708f;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
}

.forgot-password-card .text-center a {
  color: #4c9fa2;
  font-weight: 500;
  text-decoration: none;
}

.forgot-password-card .text-center a:hover {
  text-decoration: underline;
}

/* ---------- Scroll to Top Button Styles in Index ---------- */

.scroll-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  width: 45px;
  height: 45px;
  background-color: #4c9fa2;
  color: white;
  text-align: center;
  line-height: 45px;
  font-size: 20px;
  border-radius: 50%;
  z-index: 9999;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.scroll-to-top-btn.visible {
  display: block;
  opacity: 1;
  visibility: visible;
}

.scroll-to-top-btn:hover {
  background-color: #30696b;
  color: white;
}

/* ---------- Styling for Inactive Apartment Cards ---------- */

.apartment-inactive .card {
  opacity: 0.65;
  transition: opacity 0.3s ease-in-out;
}
.apartment-inactive .card:hover {
  opacity: 0.8;
}

.apartment-card .card-img-container.inactive-image img {
  filter: grayscale(80%);
  opacity: 0.7;
}

.apartment-card .card-img-container.pending-image img {
  filter: brightness(80%);
}

.apartment-inactive .btn-details {
  pointer-events: none;
}

.apartment-inactive .card-title,
.apartment-inactive .card-body {
  opacity: 0.8;
}

.apartment-card .badge {
  z-index: 2;
  font-size: 0.8em;
}

/* ---------- Edit/Add Apartment Page Styles ---------- */

.add-apartment-card,
.edit-apartment-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  background: rgb(237, 245, 245);
  margin-top: 1rem;
}

.add-apartment-card-header,
.edit-apartment-card-header {
  background-color: #4c9fa2;
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-bottom: none;
}

.add-apartment-card-header h2,
.edit-apartment-card-header h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0;
}
.add-apartment-card-header h2 i,
.edit-apartment-card-header h2 i {
  opacity: 0.8;
}

.add-apartment-card .card-body,
.edit-apartment-card .card-body {
  padding: 2rem 2.5rem;
}

/* Section titles */
.add-apartment-card h5.section-title,
.edit-apartment-card h5.section-title {
  color: #4c9fa2;
  font-weight: 600;
  font-size: 1.1rem;
  border-bottom: 2px solid #eee;
  padding-bottom: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem !important;
}

.add-apartment-card h5.section-title i,
.edit-apartment-card h5.section-title i {
  margin-right: 0.5rem;
}

.add-apartment-card .form-label,
.edit-apartment-card .form-label {
  font-weight: 500;
  color: #4a5568;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.add-apartment-card .form-control,
.edit-apartment-card .form-control,
.add-apartment-card .form-select,
.edit-apartment-card .form-select {
  border-radius: 6px;
  border: 1px solid #ced4da;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-size: 1rem;
}
.add-apartment-card .form-control-lg,
.edit-apartment-card .form-control-lg {
  padding: 0.8rem 1.1rem;
  font-size: 1.1rem;
}

.add-apartment-card .form-control:focus,
.edit-apartment-card .form-control:focus {
  border-color: #4c9fa2;
  box-shadow: 0 0 0 0.25rem rgba(76, 159, 162, 0.25);
  outline: 0;
}

.add-apartment-card input[type="file"].form-control,
.edit-apartment-card input[type="file"].form-control {
  line-height: 1.5;
}

.add-apartment-card .input-group-text,
.edit-apartment-card .input-group-text {
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-right: none;
  border-radius: 6px 0 0 6px;
}
.add-apartment-card .input-group > .form-control,
.edit-apartment-card .input-group > .form-control {
  border-radius: 0 6px 6px 0;
}

.add-apartment-card .btn-primary,
.edit-apartment-card .btn-primary {
  background-color: #4c9fa2;
  border-color: #4c9fa2;
}
.add-apartment-card .btn-primary:hover,
.edit-apartment-card .btn-primary:hover {
  background-color: #3e8588;
  border-color: #3e8588;
}
.add-apartment-card .btn-lg,
.edit-apartment-card .btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
}

.form-label .text-danger {
  font-weight: bold;
  margin-left: 2px;
}

/* Image Preview & Current Image Styles */
#image-preview-container {
  min-height: 110px;
  background-color: #f8f9fa;
  border: 2px dashed #ced4da;
  border-radius: 6px;
  padding: 0.75rem;
  margin-top: 0.75rem !important;
}
.image-preview-item {
  width: 100px;
  height: 100px;
  border-radius: 4px;
}
.image-preview-item img {
  display: block;
  border-radius: 4px;
}

/* Styling for the current images section */
.current-image-gallery {
  background-color: #f1f1f1;
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
}
.current-image-item {
  width: 100px;
  height: 100px;
  border: 1px solid #ccc;
  padding: 2px;
  border-radius: 4px;
  background-color: #fff;
}
.current-image-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

/* --- ADDED STYLE for Terminated Contracts --- */
.contract-terminated {
  opacity: 0.65;
  filter: grayscale(50%);
  border-color: #adb5bd;
}
.contract-terminated:hover {
  opacity: 1;
}
.contract-terminated a,
.contract-terminated button {
  pointer-events: auto;
}

.site-header .notification-badge {
  font-size: 0.65em;
  padding: 0.3em 0.55em;
  background-color: #dc3545;
  color: white;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  animation: pulse-badge 1.5s infinite;
}
