/* Optional: Add a smooth scroll behavior */
html {
  scroll-behavior: smooth;
}
body{
  font-family: Poppins, sans-serif!important;
}

.font12{
  font-size: 12px!important;
}
.font14{
  font-size: 14px!important;
}
.font16{
  font-size: 16px!important;
}
.font18{
  font-size: 18px!important;
}
.font20{
  font-size: 20px!important;
}
.font22{
  font-size: 22px!important;
}
.font24{
  font-size: 24px!important;
}
.font30{
  font-size: 30px!important;
}
.font35{
  font-size: 35px!important;
}

.font40{
  font-size: 40px!important;
}
.font45{
  font-size: 45px!important;
}
.font50{
  font-size: 50px!important;
}
.font60{
  font-size: 60px!important;
}

.font70{
  font-size: 70px!important;
}

.font100{
  font-size: 100px!important;
}

.font200{
  font-weight: 200!important;
}
.font300{
  font-weight: 300!important;
}
.font400{
  font-weight: 400!important;
}

.font600{
  font-weight: 600!important;
}
.font700{
  font-weight: 700!important;
}

.font-5rem{
  font-size: 5rem;
}

.clr-white{
  color: #fff!important;
}
.clr-black{
  color: #000 !important;
}
.clr-grey{
  color:grey;
}

.clr-theme-primary{
  color: #F8B600 !important;
}

.pr-2rem{
  padding-right: 2rem!important;
}

.w-10{
  width: 10% !important;
}
.w-20{
  width: 20% !important;
}

.w-30{
  width: 30% !important;
}

.w-35{
  width: 35% !important;
}

.w-40{
  width: 40% !important;
}

.w-60{
  width: 60% !important;
}

.w-85{
  width: 85% !important;
}
.w-70{
  width: 70% !important;
}

.w-80{
  width: 80% !important;
}

.w-95{
  width: 95% !important;
}
.w-100{
  width: 100% !important;
}

.pt-5per{
  padding-top: 5%;
}

.pt-10per{
  padding-top: 10% !important;
}

.mt-40per{
  margin-top: 40%;
}

/* Styling for the title font size */
.font-5rem {
  font-size: 5rem;
}

.pt-65per{
  padding-top: 65%;
}

.h-7rem{
  height: 7rem;
}

.h-3rem{
  height: 3rem;
}

.rotate-45 {
  transform: rotate(-90deg);
}

.w-4{
  width: 4% !important;
}


.btn-glass {
  background: rgba(253, 185, 19, 0.15);
  border-radius: 30px;
  border: none;
  color: white;
  font-weight: 500;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition:
    background-color 0.5s ease,
    color 0.5s ease,
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
  text-shadow: 2px 1px 31px #000000;
}

.btn-glass:hover {
  background: linear-gradient(90deg, #86d0f5 0%, #1d6db5 100%);
  color: white;
  box-shadow: 0 8px 14px rgba(2, 91, 153, 0.4);
  transform: translateY(-2px);
  transition:
  background 0.5s ease-in,
  color 0.5s ease,
  box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
  transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);

}

.btn-glass.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-size-sm {
  padding: 6px 18px;
  font-size: 14px;
}

.btn-size-md {
  padding: 10px 30px;
  font-size: 16px;
}

.btn-size-lg {
  padding: 14px 40px;
  font-size: 20px;
}

.font-sm {
  font-size: 14px !important;
}

.font-md {
  font-size: 16px !important;
}

.font-lg {
  font-size: 20px !important;
}

.arrow-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.arrow-animate {
  animation: arrowClickAnim 0.3s forwards;
}

@keyframes arrowClickAnim {
  0% { transform: translateX(0); }
  50% { transform: translateX(6px); }
  100% { transform: translateX(0); }
}


.btn2 {
  background: linear-gradient(90deg, #19A2F4 0%, #0075BA 100%);
  border-radius: 50px;
  border: none;
  color: white;
  font-weight: 500;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition:
    background 0.4s ease,
    box-shadow 0.3s ease,
    transform 0.2s ease;
  overflow: hidden;
  position: relative;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.btn2:hover {
  box-shadow: 0 8px 16px rgba(0, 76, 151, 0.4);
  transform: translateY(-2px);
}

/* Click animation pulse */
.button2-clicked {
  animation: btn2ClickAnim 0.3s ease-out;
}

@keyframes btn2ClickAnim {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 76, 151, 0.3);
  }
  50% {
    transform: scale(0.96);
    box-shadow: 0 4px 14px rgba(0, 76, 151, 0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 16px rgba(0, 76, 151, 0.4);
  }
}

/* Size classes */
.btn2-size-sm {
  padding: 6px 18px;
  font-size: 14px;
}

.btn2-size-md {
  padding: 10px 30px;
  font-size: 16px;
}

.btn2-size-lg {
  padding: 14px 40px;
  font-size: 20px;
}

/* Font classes */
.font2-sm {
  font-size: 14px !important;
}

.font2-md {
  font-size: 16px !important;
}

.font2-lg {
  font-size: 20px !important;
}

/* Truncate */
.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.home-bg {
  background-image: url('/images/home_bg.png');
  height: 150%;
  position: fixed;
  display: flex;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  margin-left: 7px;
}

.circle-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: white;
  color: grey;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  font-family: Poppins;
  position: fixed;
  z-index: 900;
  bottom: 16.5px;

  /* ADD THESE */
  left: 50%;
  transform: translateX(-50%);
}

.zoom-80 {
  bottom: 20px; /* or whatever looks better at 80% zoom */
  width: 90px;
  height: 90px;
}


.circle-btn:hover {
  background: linear-gradient(90deg, #86d0f5 0%, #1d6db5 100%);
  transition: all 0.5s;
  color: white;
}

.btn-container {
  position: fixed;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 900;
}

/* Sliding Login Panel Styles */
.login-panel {
  position: fixed;
  top: 0;
  right: -40%;
  width: 40%;
  height: 100vh;
  background-color: white;
  box-shadow: -5px 0 15px rgba(0,0,0,0.2);
  transition: right 0.5s ease-in-out, transform 0.5s ease-in-out;
  z-index: 1000;
  overflow-y: auto;
  padding: 2rem;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.login-panel.active {
  right: 0;
}

.login-panel.slide-out {
  transform: translateX(100%);
}

.login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}

.login-overlay.active {
  opacity: 1;
  visibility: visible;
}

.login-form-group, .register-form-group {
  margin-bottom: 1.5rem;
}

.login-form-control, .register-form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(134, 208, 245, 0.2) 0%, rgba(29, 109, 181, 0.2) 100%);
  transition: all 0.3s;
}

.login-form-control:focus, .register-form-control:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(29, 109, 181, 0.5);
}

.login-title, .register-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

.back-btn {
  left: 1rem;
  bottom:2px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 0.5rem;
  color: #777;
  font-weight: 500;
  transition: color 0.3s;
}

.back-btn:hover {
  color: #1d6db5;
}

/* Register Panel Styles */
.register-panel {
  position: fixed;
  top: 0;
  right: -40%;
  width: 40%;
  height: 100vh;
  background-color: white;
  box-shadow: -5px 0 15px rgba(0,0,0,0.2);
  transition: right 0.5s ease-in-out, transform 0.5s ease-in-out;
  z-index: 1000;
  overflow-y: auto;
  padding: 2rem;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.register-panel.active {
  right: 0;
}

.register-panel.slide-in {
  transform: translateX(-100%);
  right: 40%;
}

.register-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}

.register-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Form validation error message styling */
.error-message {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  padding-left: 2px;
  animation: fadeIn 0.3s ease;
}

.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.1rem rgba(220, 53, 69, 0.25) !important;
}

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

/* Welcome Screen Styles */
.welcome-screen {
  position: fixed;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: white;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: top 0.8s ease-in-out;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
}

.welcome-screen.active {
  top: 0;
}

.welcome-content {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards 0.5s;
  transition: opacity 2s ease, transform 2s ease;
}

.welcome-content.fade-out {
  opacity: 0;
  transform: translateY(-50px);
}

.welcome-text {
  font-size: 60px;
  font-weight: 600;
  color: #1d6db5;
  margin: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Page transition for login/home */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.8s ease-in-out;
}

.page-transition.active {
  transform: translateY(0);
}


/* File: PropertyProgressTracker.css */
body {
  font-family: 'Poppins', sans-serif;
}

.property-select {
  max-width: 300px;
  border-radius: 10px;
}

.progress-card {
  flex: 1 1 180px;
  max-width: 200px;

  min-height: 108px !important;
  border: none !important;
  border-radius: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.progress-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.progress-card.done {
  background: linear-gradient(135deg, #19A2F4, #0075BA);
  color: white;
}

.progress-card.done .icon-container {
  color: white;
}

.progress-card.pending {
  background: #f8f9fa;
  color: #6c757d !important;
}

.progress-card.locked {
  background: #f8f9fa;
  color: #6c757d !important;
}

.progress-card .icon-container {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 1.2rem;
}

.icon-container {
  position: absolute;
  bottom: 10px;
  right: 15px;
}
/* File: DashboardBottomSection.css */
.quick-action-card {
  width: 100%;
  height: 100%;
  background-color: #f8f9fa !important;
  border: none !important;
  border-radius: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  min-height: 246px !important; /* consistent height */
  display: flex;
  flex-direction: column;
  justify-content: center;
}



.quick-action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.quick-action-card .icon {
  font-size: 36px;
  color: #333;
  transition: transform 0.3s ease;
}

.quick-action-card:hover .icon {
  transform: scale(0.95);
}

.quick-action-card .icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.quick-action-card:hover .icon img {
  transform: scale(0.95);
}
.icon{
  padding-top:30px;
}
.quick-action-card .label {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

.notifications-table {
  background-color: #f8f9fa !important;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.notifications-table tr {
  height: 60px;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}

.notifications-table tr::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.notifications-table tr.status-done::before {
  background-color: #28a745;
}

.notifications-table tr.status-pending::before {
  background-color: #0d6efd;
}

.notifications-table td {
  vertical-align: middle;
  padding: 10px 15px;
  border-top: none;
}

.notification-bg{
   background-color: #f8f9fa !important;
}

.notifications-table .status-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
   background-color: #f8f9fa !important;
}

.notifications-table .view-all {
  padding: 12px;
  border-top: 1px solid #f0f0f0;
  color: #0d6efd;
  font-weight: 500;
  transition: color 0.2s ease;
}

.notifications-table .view-all:hover {
  color: #0a58ca;
}

.notification-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ececec;
  padding: 10px 0;
  transition: background 0.2s;
}

.notification-row:hover {
  background: #e8f2fa;
}

.notification-content {
  flex-grow: 1;
  margin-left: 1rem;
  font-size: 14px;
}

.notification-date {
  font-size: 12px;
  text-align: right;
}

.status-icon {
  font-size: 20px;
}

.view-all {
  margin-top: 10px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: color 0.3s;
}

.view-all:hover {
  color: #007bff;
}

.offers-page {
  font-family: 'Poppins', sans-serif;
}

.offers-nav .nav-link {
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  color: #444;
  font-weight: 500;
}

.offers-nav .nav-link.active {
  background: linear-gradient(135deg, #19A2F4, #0075BA);
  color: white;
}

.offers-table-header {
  font-weight: 600;
  padding: 0.75rem 0;
  border-bottom: 2px solid #f0f0f0;
}

.offers-table-row {
  padding: 1rem 0;
  border-bottom: 1px solid #ececec;
  transition: background 0.2s;
}

.offers-table-row:hover {
  background-color: #f8f9fa;
}

.offer-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

/* E-sign page button styles */
.offers-page .btn-outline-dark {
  border-color: #333;
  color: #333;
  transition: all 0.3s ease;
  min-width: 120px;
  margin: 0 8px;
}

.offers-page .btn-outline-dark:hover:not(:disabled) {
  background: linear-gradient(135deg, #19A2F4, #0075BA);
  border-color: transparent;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(14, 91, 169, 0.2);
}

.offers-page .btn-outline-dark:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Button container spacing */
.offers-table-row .d-flex.justify-content-end {
  gap: 16px;
  flex-wrap: wrap;
}

/* Bulk action buttons */
.bulk-actions .btn-outline-dark {
  border-color: #333;
  color: #333;
  transition: all 0.3s ease;
  min-width: 120px;
  margin: 0 8px;
}

.bulk-actions .btn-outline-dark:hover:not(:disabled) {
  background: linear-gradient(135deg, #19A2F4, #0075BA);
  border-color: transparent;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(14, 91, 169, 0.2);
}

.bulk-actions .btn-outline-dark:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Mobile button adjustments */
@media (max-width: 767px) {
  .offers-page .btn-outline-dark {
    min-width: 100%;
    margin: 4px 0;
  }
  
  .offers-table-row .d-flex.justify-content-end {
    gap: 8px;
  }
}


.offer-detail-page {
  font-family: 'Poppins', sans-serif;
}

.offer-detail-page h5 {
  font-weight: 600;
}

.offer-detail-page .card {
  background-color: #fff;
  border: 1px solid #eaeaea15;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.offer-detail-page .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.offer-detail-page .card h6 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.offer-detail-page strong {
  font-weight: 500;
}
.app-header {
  background-color: #fff;
  display: flex;
}

.welcome-message {
  min-width: 150px;
}

.search-bar input::placeholder {
  color: #aaa;
}

.payments-page .table {
  border-collapse: separate;
  border-spacing: 0 12px;
}

.payments-page .table thead th {
  border: none;
  padding: 1rem;
  font-weight: 600;
  background: #f8f9fa;
}

.payments-page .table tbody tr {
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.payments-page .table tbody tr:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.payments-page .table tbody td {
  padding: 1.2rem 1rem;
  border: none;
  vertical-align: middle;
}

.payments-page .table tbody td:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.payments-page .table tbody td:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.notifications-page {
  background-color: #f8f9fa;
  padding: 20px;
  min-height: 100vh;
}

.search-filter-bar {
  background-color: #f8f9fa;
  padding: 15px 0;
}

.search-input {
  height: 38px;
  width: 220px;
  border: 1px solid #ced4da;
  background-color: white;
  padding-left: 35px !important;
  border-radius: 50px;
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translate(-7px, -14px);
  color: #adb5bd;
  pointer-events: none;
  z-index: 2;
}

.search-input:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.search-input:focus + .search-icon {
  color: #86b7fe;
}

.filter-btn {
  font-weight: 400;
  color: #737b84;
  border-color: #dee2e6;
  background-color: white;
  height: 38px;
  padding: 0 20px;
}

.filter-btn.btn-primary {
  background:linear-gradient(135deg, #19A2F4, #0075BA) !important;
  border-color: #0d6efd;
  color: white;
}

.filter-btn.btn-outline-secondary:hover {
  background-color: #f8f9fa;
  color: #212529;
}

.notifications-table {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.notifications-table tr {
  height: 60px;
  border-bottom: 1px solid #f0f0f0;
}

.notifications-table td {
  vertical-align: middle;
  padding: 10px 15px;
  border-top: none;
}

.checkbox-cell {
  width: 40px;
}

.name-cell {
  min-width: 100px;
  font-weight: 500;
}

.role-cell {
  min-width: 100px;
  font-weight: 500;
}

.status-cell {
  min-width: 180px;
  font-weight: 500;
}

.date-cell {
  min-width: 150px;
  color: #6c757d;
  font-size: 0.9rem;
}

.action-cell {
  width: 50px;
  text-align: center;
}

.action-btn {
  color: #6c757d;
}

.action-btn:hover {
  color: #343a40;
}

/* Style checkboxes */
.form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 0;
  cursor: pointer;
}

.notifications-page .table {
  border-collapse: separate;
  border-spacing: 0 12px;
}

.notifications-page .table tbody tr {
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.notifications-page .table tbody tr:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.notifications-page .table td {
  padding: 1.2rem 1rem;
  border: none;
  vertical-align: middle;
}

.notifications-page .table td:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.notifications-page .table td:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.sortable-header {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.sortable-header:hover {
  color: #0d6efd;
}
.sidebar-menu{
  padding:1em !important;
  padding-left:20px !important;
}

.grey-text{
  color:grey !important;
}

/* Sidebar Toggle Styles */
.left-sidebar {
  transition: transform 0.3s ease-in-out;
}

header-nav{
  width:96% !important;
}

@media (max-width: 1199px) {
  .left-sidebar {
    position: fixed;
    left: -250px;
    z-index: 1000;
  }

  body.show-sidebar .left-sidebar {
    transform: translateX(250px);
    margin-left: 15px;
  }

  .btn.ti-menu-2 {
    color: #000 !important;
  }
}

/* Summary Card Styles */

/* Card container */
.summary-card {
  width: 100%;
  height: 100%;
  border: none !important;
  border-radius: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background-color: #f8f9fa;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

/* Label container */
.summary-card .label {
  color: #6c757d;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Label text inside .label */
.summary-card .label p {
  font-size: 15px;
  white-space: normal;
  word-break: break-word;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}




.card.summary-card {
  background-color: #f8f9fa;
}

.summary-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #19A2F4, #0075BA);
  box-shadow: 0px 28px 46px rgba(0, 0, 0, 0.15);
  color: white !important;
}



.summary-card .count {
 color: #6c757d !important;
}

.summary-card:hover .label p,
.summary-card:hover .count {
  color: white !important;
}

/* Password field styles */
.password-field {
    position: relative;
}

.password-toggle-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.password-toggle-btn:hover {
    color: #1d6db5;
}

.password-field .login-form-control,
.password-field .register-form-control {
    padding-right: 40px; /* Make room for the eye icon */
}

/*Toast*/
.colored-toast.swal2-icon-success {
  background-color: #a5dc86 !important;
}

.colored-toast.swal2-icon-error {
  background-color: #f27474 !important;
}

.colored-toast.swal2-icon-info {
  background-color: yellow !important;
}

.sidebar-base .nav-item .nav-link .item-name{
  font-size: 0.85rem!important;
}

.onboarding-layout{
  padding-left: 283px !important;
}
.summary-card:hover .icon-summary svg {
  color: white !important;
  fill: white !important;
}

.icon-25 {
  width: 25px !important;
  height: 25px !important;
}


/*My Tickets*/
.ticket-tracker-container {
  background: #f0f4ff;
  padding-bottom: 50px;
  min-height: 100vh;
  color: #212529BF; 
}

.ticket-tracker-container h1,
.ticket-tracker-container h3{
  color: #6b7280 !important;
}

/* General card styling */
.ticket-tracker-container .card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  border: none;
}

/* Header container - light grey background and black text */
.ticket-tracker-container .bg-primary {
  background: #f4f4f5; /* light neutral grey */
  color: #111827 !important; /* blackish text */
  border-radius: 1rem;
}

/* Filter buttons */
.ticket-tracker-container .btn-outline-secondary {
  background-color: #e5edff;
  color: #19a2f4;
  border: none;
  border-radius: 50px;
  padding: 6px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.ticket-tracker-container .btn-outline-secondary:hover,
.ticket-tracker-container .btn-outline-secondary.active,
.ticket-tracker-container .btn-outline-secondary:focus {
  background: linear-gradient(to right, #2563eb, #4f46e5);
  color: white;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

/* Ticket message alert */
.ticket-tracker-container .alert-light {
  background: #f9fbff;
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid #3b82f6;
}

/* Badges */
.ticket-tracker-container .badge{
  font-size: 1rem;
}
.ticket-tracker-container .badge-success {
  background-color: #d1fae5;
  color: #059669;
  font-weight: 500;
  border-radius: 12px;
  padding: 4px 12px;
}

.ticket-tracker-container .badge-warning {
  background-color: #fef3c7;
  color: #d97706;
  font-weight: 500;
  border-radius: 12px;
  padding: 4px 12px;
}

.ticket-tracker-container .badge-muted {
  background-color: #f3f4f6;
  color: #6b7280;
  font-weight: 500;
  border-radius: 12px;
  padding: 4px 12px;
}

/* Custom stat cards */
.ticket-tracker-container .ticket-card {
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  border: none;
  color: white;
  transition: transform 0.2s ease-in-out;
  font-size: 1.3rem;
}

.ticket-tracker-container .ticket-card:hover {
  transform: translateY(-3px);
}

/* Ultra minimal stat cards with light background and soft text */
.ticket-tracker-container .total-card,
.ticket-tracker-container .pending-card,
.ticket-tracker-container .resolved-card {
  background-color: #f8fafc; /* very light grey-blue */
  color: #6b7280; /* soft grey text */
  box-shadow: none;
}

/* Optional: slight hover feedback */
.ticket-tracker-container .total-card:hover,
.ticket-tracker-container .pending-card:hover,
.ticket-tracker-container .resolved-card:hover {
  filter: brightness(0.97);
}


/* Responsive tweaks */
@media (max-width: 768px) {
  .ticket-tracker-container .row > div {
    margin-bottom: 15px;
  }
}

/* Sidebar Link Gradient Styles */
.sidebar-link:hover {
  background: #cfe2ff !important;
}

.sidebar-link.active {
  background-size: 300% 100% !important;
  background-image: linear-gradient(to right, #19A2F4, #0075BA, #0075BA, #19A2F4) !important;
  transition: all 0.4s ease-in-out !important;
  animation: gradientFlow 6s ease infinite;
}

.sidebar .sidebar-link.active:hover {
  background-position: 100% 0 !important;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
