/* ------------------ THEME VARIABLES ------------------ */
:root {
  --font-color: #039;
  --font-color-dark: #027;

  --card-bg-light: #EEF3FF;
  --card-bg: #F8F8F8;
  --scrollbar-track: #E6EDFB;
  --scrollbar-thumb: #039;
  --scrollbar-thumb-hover: #002d80;
}

/* ------------------ GENERAL TEXT ------------------ */
/* .Dashboard-tit,
.user-r-t,
#text-card,
#text-list,
#stud-b,
#gmail-card,
#active-card,
#h-text,
#event-h,
#event-p,
#event-location,
#event-date,
.t-s-text,
.label,
.value,
.job-card-h,
.job-card-p,
.job-card-badge,
.card-label {
  color: var(--my-text-color);
} */

.Dashboard-tit {
  color: var(--my-text-color);
}

/* Font families and weights */
.Dashboard-tit,
.user-r-t,
#text-card,
#text-list,
.t-s-text,
.card-label,
.label {
  /* font-family: Poppins, sans-serif; */
  /* font-weight: 600; */
}

#gmail-card,
#active-card,
#event-p,
.value,
.job-card-p {
  font-weight: 400;
}

#stud-b {
  font-weight: bold;
}

/* #stud-b,
.job-card-badge {
  font-weight: bold;
} */
/* ------------------ CARD STYLES ------------------ */
.card-s,
.main-event-card,
.top-s-card,
.main-job-card {
  width: 100%;
  border-radius: 10px;
  border: 1.5px solid var(--my-card-border);
  background: var(--my-theme-color);


  box-shadow: 0 2px 12px rgba(153, 173, 214, 0.5);
  transition: transform 0.3s ease;
  padding: 5px;

  /* overflow-y: auto; */
  /* overflow-x: auto;  */
}

.right-card-container {

  overflow-y: auto;
}

.main-job-detail {
  width: 100%;
  border-radius: 10px;
  border: 1.5px solid var(--my-card-border);
  /* background: var(--my-theme-inner-color); */
  background: var(--my-theme-color);
  box-shadow: 0 2px 12px rgba(153, 173, 214, 0.5);
  transition: transform 0.3s ease;
}


.card-list,
.event-card,
.job-card {
  width: 100%;
  border-radius: 10px;
  border: 1.2px solid var(--card-border) !important;
  /* background: var(--my-theme-color ); */
  background: var(--my-theme-inner-color);
  box-shadow: 0 1px 10px rgba(153, 173, 214, 0.4);
  padding: 8px;
  margin: 4px;
  color: var(--my-text-color);
}

.card-img,
#card-img {
  width: 100%;
  max-width: 90px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 2px solid var(--my-card-border);
  object-fit: cover;
  /* background-color: #f8f9fa; */
  background-color: var(--my-bg-color);
  box-shadow: 0 4px 8px rgba(153, 173, 214, 0.3);
}

/* ------------------ BUTTONS ------------------ */
#btn-Approve,
.btn-Approve-job,
.btn-view-job {
  width: 100%;
  height: 46px;
  background: var(--my-theme-text-color);
  color: white;
  border: 1px solid var(--main-theme-color);
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-view-job:hover {
  background-color: var(--main-theme-color);
}

#btn-Decline,
.btn-Decline-job {
  width: 100%;
  height: 46px;
  border: 2px solid var(--card-border);
  background: var(--scrollbar-track);
  color: var(--font-color);
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

#btn-Decline:hover,
.btn-Decline-job:hover {
  background: var(--font-color);
  color: white;
  border: none;
}

#btn-eye {
  /* width: 100%; */
  width: 120%;  
  height: 46px;
  /* background: var(--scrollbar-track) var(--my-btn-bg-color); */
  background: var(--my-btn-bg-color);
  /* border: 2px solid var(--card-border); */
  border: 2px solid white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}

#btn-eye:hover {
  background-color:  var(--main-theme-color);
  /* background-color: #d7e3f8; */
}

#btn-eye :hover {
color: white !important;  /* background-color: #d7e3f8; */
}

/* ------------------ SCROLLBARS ------------------ */

.card-container,
.event-card-container,
.job-card-container,
.job-detail-card-container {
  max-height: 600px;
  /* overflow-y: auto; */
  border-radius: 12px;
  /* background: ; */
  padding: 10px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

.job-card-container2 {
  padding: 0px;
  box-shadow: nones;
}


.job-detail-card-container {
  max-height: 600px;
  overflow-y: auto;
  border-radius: 12px;
  background: var(--my-theme-inner-color);
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-container::-webkit-scrollbar,
.event-card-container::-webkit-scrollbar,
.job-card-container::-webkit-scrollbar,
.job-detail-card-container::-webkit-scrollbar {
  width: 14px;
  border: 2px solid var(--card-border);
  border-radius: 10px;
}

.card-container::-webkit-scrollbar-track,
.event-card-container::-webkit-scrollbar-track,
.job-card-container::-webkit-scrollbar-track,
.job-detail-card-container::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
  border-radius: 10px;
  overflow-x: hidden;
}

.card-container::-webkit-scrollbar-thumb,
.event-card-container::-webkit-scrollbar-thumb,
.job-card-container::-webkit-scrollbar-thumb,
.job-detail-card-container::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 10px;
  border: 2px solid var(--scrollbar-track);
}

.card-container::-webkit-scrollbar-thumb:hover,
.event-card-container::-webkit-scrollbar-thumb:hover,
.job-card-container::-webkit-scrollbar-thumb:hover,
.job-detail-card-container::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}

/* ------------------ PROGRESS BARS ------------------ */
.cgpa-progress .progress {
  height: 8px !important;
  background-color: #d6e0f5;
  border-radius: 10px;
  overflow: hidden;
}

.cgpa-progress .progress-bar {
  background-color: var(--main-theme-color);
  transition: width 0.6s ease;
}

.cgpa-label {
  position: absolute;
  top: -18px;
  left: 40%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 600;
  color: var(--my-text-color);
}

/* ------------------ ICONS ------------------ */

.card-icn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-card-design {
  border: 1.5px solid var(--my-card-border);
  border-radius: 15px;
  background: var(--custom-card-bg);
}

.icon-wrapper {
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-wrapper span {
  /* font-weight: bold; */
}

.card-content {
  padding: 10px;
  display: flex;
  justify-content: end;
}

.card-content h3 {
  font-weight: bold;
  font-size: 40px;
  color: var(--my-theme-text-color);
}

.card-icn {
  width: 55px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--main-theme-color);
}

.card-icn>i {
  font-size: 35px;
  /* color: var(--my-text-color); */
  color: var(--my-icn-color)
}

/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 768px) {

  .t-s-text,
  #text-card {
    font-size: 14px;
  }

  .reward-img {
    width: 50px;
  }
}

@media (max-width: 1179px) {
  .univ_std .top-s-card {
    height: 400px;
  }
}

@media (max-width: 1106px) {
  .univ_std .top-s-card {
    height: 420px;
  }
}

@media (max-width: 1022px) {
  .univ_std .top-s-card {
    height: 450px;
  }
}

@media (max-width: 999px) {
  .univ_std .top-s-card {
    height: 470px;
  }
}

@media (max-width: 995px) {
  .univ_std .top-s-card {
    height: 490px;

  }
}

@media (max-width: 991px) {
  .univ_std .top-s-card {
    height: auto;

  }
}

@media (max-width: 991px) {
  .top-s-card {
    height: auto;

  }
}

@media (max-width: 576px) {
  .top-s-card {
    text-align: center;
    height: auto;
  }

  #text-list,
  #stud-b,
  #gmail-card,
  #active-card {
    text-align: center;
    margin: auto;
  }
}


/* Remove borders and focus outline */
.borderless-group .form-control {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
}

/* Remove border from input group wrapper */
.borderless-group {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Remove icon box border and make it blend */
.borderless-group .input-group-text {
  border: none !important;
  background: transparent !important;
  color: var(--my-text-color);
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------- */
/* 🌈 General form background and text color */
.filter-section form,
.filter-section input,
.filter-section textarea,
.filter-section select,
.filter-section label {
  color: var(--my-text-color) !important;
  background-color: var(--my-input-bg-color) !important;
  border: none !important;
}

/* 🏷️ Labels */
.filter-section label.form-label,
.filter-section label {
  color: var(--my-text-color) !important;
  background-color: transparent !important;

}

/* Placeholder */
.filter-section ::placeholder {
  color: var(--my-text-color) !important;
  opacity: 0.7;
}

/* 🔲 Input Focus */
.filter-section input.form-control:focus,
.filter-section textarea.form-control:focus,
.filter-section select.form-select:focus {
  color: var(--my-text-color) !important;
  background-color: var(--my-input-bg-color) !important;
  border: 1px solid var(--my-main-border) !important;
  box-shadow: none !important;
  outline: none !important;
}

/* 🧱 Input & Textarea Normal State */
.filter-section input.form-control,
.filter-section textarea.form-control,
.filter-section select.form-select {
  background-color: var(--my-theme-inner-color) !important;
  color: var(--my-text-color) !important;
  border: none !important;
}


/* 🧩 Input Group Elements */
.filter-section .input-group-text {
  background-color: var(--my-input-bg-color) !important;
  color: var(--my-text-color) !important;
  border: none !important;
}

.projectDetails {
  background-color: var(--my-theme-inner-color);

  border: 1px solid var(--my-card-border);
  border-radius: 5px;
  margin: 1rem 1.5rem;
  overflow-y: scroll;

}

.reviewCard {
  border: 1px solid var(--my-card-border);
}

.socailIcn {
  color: #d6e0f5;
}

.modal-content {
  background-color: var(--model-theme-color);
  /* color : rgba(0, 0, 0, 0.897); */
  /* color :var(--my-text-color); */
  color: var(--model-text-color-h);
}

.modal-content i {
  color: var(--my-text-color);
}

#viewEventModal .d-flex i {
  font-size: 1.2rem;
}

#viewEventModal .d-flex p {
  margin: 0;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 992px) {
  #sidebar.closed {
    width: 0px;
  }
}

.modal-backdrop.show {
  opacity: 0.2 !important;
  background-color: rgba(0, 0, 0, 0.3) !important;
}


.modal-header {
  background-color: var(--main-theme-color);
  color: #ffffff;
}

.model-text-dark {
  color: var(--model-text-color-p);
}

.model-status-color {
  background-color: var(--main-theme-color);
  opacity: 0.8;
  color: #ffffff;
  padding: 3px;
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.model-close-button {
  position: absolute;
  top: -19px;
  right: -19px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 19px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  opacity: 0.9;
  /* font-size: 10px; */
  font-size: 30px;
  font-weight: 200;
  transition: all 0.2s ease-in-out;
}

.model-close-button:hover {
  opacity: 1;
  background-color: #222;
}

.ck-editor__editable_inline {
  background-color: var(--my-input-bg) !important;
  color: var(--my-text-color) !important;
  min-height: 72px !important;
}

.ck-toolbar {
  background-color: var(--my-input-bg) !important;
  color: var(--my-text-color) !important;
  /* border: 1px solid rgba(0,0,0,0.1) !important; */
}

/* 🔹 Toolbar button icons */
.ck-toolbar .ck-button .ck-icon {
  color: var(--my-text-color) !important;
  fill: var(--my-text-color) !important;
}

/* 🔹 Toolbar button hover/focus states */
.ck-toolbar .ck-button:hover,
.ck-toolbar .ck-button:focus {
  background-color: rgba(255, 255, 255, 0.1) !important;
}

[data-bs-theme="dark"] .main-search,
[data-bs-theme="dark"] #sidebar,
[data-bs-theme="dark"] .dark-btn,
[data-bs-theme="dark"] .card-job-Form,
[data-bs-theme="dark"] .card-s,
[data-bs-theme="dark"] .main-job-detail,
[data-bs-theme="dark"] .main-job-card,
[data-bs-theme="dark"] .event-card-container,
[data-bs-theme="dark"] .startup-card,
[data-bs-theme="dark"] .teacher-form,
[data-bs-theme="dark"] .student-from,
[data-bs-theme="dark"] .industry-form,
[data-bs-theme="dark"] .list-group-item {
  box-shadow: none !important;
}

/* Loader  */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--loader-bg);
  z-index: 9999;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding-top: 90px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Spinner Animation */
.spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid var(--font-color);
  /* Change color as per theme */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loader-text {
  margin-top: 15px;
  font-size: 18px;
  color: var(--loader-text-color);
  font-weight: 300;
  /* letter-spacing: 1px; */
}

/* Hide loader smoothly */
#loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.first-main-logo-1 {
  width: 214px;
  height: 59.205px;
  background-image: var(--logo-path-left);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}

.first-main-logo-2 {
  width: 214px;
  height: 59.205px;
  background-image: var(--logo-path);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}

.table-themebg {
  background-color: var(--main-theme-color) !important;
}

.table-themebg th {
  background-color: inherit !important;
  color: #fff !important;
}

.table-status-badge {
  background-color: #A4FF9F;
}

.detail-content .fw-semibold {
  color: var(--my-text-color);
}

.job-card-h {
  color: var(--my-theme-text-color);
  font-weight: bold;
}

.visit-title {
  color: var(--my-theme-text-color);
}

.startup-card-header {
  color: var(--my-theme-text-color);
}

.modal-body p,
.modal-body div,
.modal-body h1,
.modal-body h2,
.modal-body h3,
.modal-body h4,
.modal-body h5,
.modal-body h6 {
  color: var(--my-text-color) !important;
}

.modal-body i {
  color: var(--main-theme-color);
}

.student_app-card {
  color: var(--my-text-color);
}

.student_app-card .fw-semibold {
  color: var(--main-theme-color);
}

.project-req-card {
  /* justify-self: center; */
  /* justify-items: center;
  align-items: center; */
  align-self: center;
}

.filter-section label {
  font-weight: 400 !important;
}

.card-job-Form h5 {
  font-weight: normal !important;
}

.modal-title {
  font-weight: normal !important;
}

.startup-card-header h3,
.startup-card-header h2 {
  font-weight: normal !important;
}

.detail-content h1 {
  font-weight: normal !important;
}

.form-label {
  font-weight: 500 !important;
}

.card-s h4 {
  font-weight: normal !important;
}

/* .main-footer{
  background-color: transparent;
  color: var(--my-text-color);
  font-size: 14px;
}
.main-footer a{
  text-decoration: none;
  color: var(--my-text-color);
}
.footer-logo{
width: 200px;
}

.footer-contact{
  height: fit-content;
} */



/* Slim Divider Above Footer */
.footer-divider {
  height: 1px;
  background-color: #0A5CA5;
  width: 98%;

}

/* Footer Styles */
.footer {
  /* background-color: ;  */
  color: var(--my-text-color);
  /* Default text black */
  padding: 40px 0;
  font-family: Arial, sans-serif;
}

/* Headings in theme color */
.footer h4 {
  color: #0A5CA5;
}

.brand-name {
  width: 214px;
  height: 59.205px;
  background-image: var(--logo-path-left);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}


/* Links black with hover slide-in underline animation */
.footer a {
  color: var(--my-text-color);
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: color 0.3s;
}

.footer a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  margin-top: 3px;
  right: 0;
  background: #0A5CA5;
  transition: width 0.3s ease, left 0.3s ease;
}

.footer a:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

/* Left Side */
.footer-left .brand-name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}

.footer-left .footer-desc {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-left .copyright {
  font-size: 12px;
}

/* Right Side */
.footer-right h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-message {
  font-size: 12px;
  /* font-style: italic; */
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--my-text-color);
}

.contact-wrapper {
  text-align: right;
  /* only contact list right-aligned */
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  opacity: 0;
  /* start hidden for animation */
  transform: translateY(20px);
  animation: slideUp 0.6s forwards;
}

/* stagger animation delay */
.contact-item:nth-child(1) {
  animation-delay: 0.2s;
}

.contact-item:nth-child(2) {
  animation-delay: 0.4s;
}

.contact-item i {
  margin-right: 8px;
  color: #0A5CA5;
  /* icon in theme color */
  font-size: 16px;
}

/* Slide-up fade-in animation */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive: mobile */
@media (max-width: 767px) {

  .footer-left,
  .footer-right {
    text-align: center;
    margin-bottom: 20px;
  }

  .contact-wrapper {
    text-align: start;
  }

  .contact-item {
    justify-content: start;
  }
}

/* Set fixed height and enable vertical scroll */
.ck-editor__editable_inline {
  min-height: 120px;
  /* ~5 rows */
  max-height: 120px;
  width: 100%;
  box-sizing: border-box;
  overflow-y: auto;
}

.btn-startup {
  text-decoration: none !important;
}

@media (max-width: 768px) {
  .dropdown-menu {
    max-width: 500px;
    min-width: 200px;
  }
}

.dropdown-menu .dropdown-item {
  font-size: 16px;
  /* Default size */
}

/* Tablet / small screens */
@media (max-width: 992px) {
  .dropdown-menu .dropdown-item {
    font-size: 14px;
  }
}

/* Mobile screens */
@media (max-width: 576px) {
  .dropdown-menu .dropdown-item {
    font-size: 12px;
  }

  .dropdown-menu {
    max-width: 300px;
    min-width: 180px;
  }
}

@media (max-width: 300px) {
  .dropdown-menu {
    max-width: 255px;
    min-width: 150px;
  }
}

@media(max-width :575px) {
  .job_app_card {
    margin-top: 25px;
  }
}

a .btn-primary {
  background: var(--my-btn-bg-color) !important;
  color: var(--my-theme-text-color) !important;
  border: none !important;

}

@media(max-width:768px) {
  .forgot_pass {
    font-size: 11px !important;
  }
}

@media(max-width:1246px) {
  .text-res {
    font-size: 13px !important;
  }
}

@media(max-width:1089px) {
  .text-res {
    font-size: 10px !important;
  }
}

.problem_details .startup-card {
  max-height: 473px !important;
}

.top_heading {
  font-size: 12px;
}

/* @media (max-width: 767px) {
  .student_application .card-list {
    width: 50% !important; 

   
    text-align: left !important; 
  }

  .student_application .card-list .row {
    display: block !important; 
  }

 
} */

@media(max-width:767px) {

  .student_application {
    gap: 25px;
  }

  .student_application .card-list {
    width: 47% !important;
    margin: 0px !important;
    padding: 20px !important;
  }

  .student_application .card-list p,
  .student_application .card-list h5,
  .student_application .card-list div,
  .student_application .card-list small {
    text-align: left !important;
    align-items: start !important;
    display: block !important;
    margin-left: 0 !important;
  }

  .student_application .card-list span {
    text-align: left !important;
    align-items: start !important;
  }

  .student_application .card-list .btn-startup {
    /* Assuming a class for the eye button */
    /* display: block !important; */
    /* Make it a block element to take full width if needed */
    margin-left: 0 !important;
    /* Remove any auto margins that might center it */
    margin-right: auto !important;
    /* Push it to the left */
  }

  .student_application .card-list .row {
    display: flex !important;
    align-items: start !important;
    gap: 10px;
  }
}


@media (max-width: 550px) {

  /* 1. Container for all cards - ensures the column of cards is centered */
  .student_application {
    display: flex !important;
    flex-direction: column !important;
    /* Stack cards vertically */
    align-items: center !important;
    /* Center the column of cards horizontally on the page */
    padding: 0 10px !important;
    /* Add some side padding to the main container */
  }


  /* 2. Each INDIVIDUAL CARD - now ensuring its internal text is centered */
  .student_application .card-list {
    width: 100% !important;
    /* Each card takes full width */
    max-width: 350px !important;
    /* Optional: A max-width for cards on larger mobile screens */
    padding: 15px !important;
    /* Good internal padding for content */
    margin-bottom: 20px !important;
    /* Space between stacked cards */
    margin-left: auto !important;
    /* Center the card itself if max-width is applied */
    margin-right: auto !important;
    /* Center the card itself if max-width is applied */
    text-align: center !important;
  }

  /* Ensure text elements specifically align center */
  .student_application .card-list p,
  .student_application .card-list h5,
  .student_application .card-list small,
  .student_application .card-list span {
    text-align: center !important;
    /* Explicitly center text within these elements */
    display: block !important;
    /* Make them block to respect text-align: center fully if needed, and to ensure they take their own line */
    margin-left: auto !important;
    /* To center the block itself if it has a defined width */
    margin-right: auto !important;
    /* To center the block itself if it has a defined width */
  }

  /* For divs that might contain other elements */
  .student_application .card-list div {
    /* If this div contains other elements you want to center,
         make it a flex container and center its children.
         If it's just a text container, 'text-align: center' from parent should work. */
    display: flex !important;
    /* Make it a flex container */
    flex-direction: column !important;
    /* Stack its children vertically */
    align-items: center !important;
    /* Center children horizontally within this div */
    /* No need for justify-content if just centering text horizontally */
    width: 100% !important;
    /* Ensure it takes full width if needed */
  }

  .student_application .card-list img {
    display: block !important;
    margin: 0 auto !important;
  }

  .student_application .card-list .btn-startup {
    display: block !important;
    width: fit-content !important;
    /* Or a specific width if desired */
    margin: 9px auto 0 auto !important;
    text-align: center !important;
    /* Ensure text *inside* the button is centered */
  }

  .student_application .card-list .status-badge {
    /* Assuming a class for your status badge */
    display: inline-block !important;
    /* or block */
    margin: 5px auto !important;
    /* Center it if it's an inline-block or block element */
    text-align: center !important;
    /* Center text inside the badge */
  }
}

@media (max-width: 480px) {
  .user-res-card {
    gap: 10px;
  }
}

@media (max-width: 430px) {
  .user-res-card {
    gap: 10px;
  }
}

@media (max-width: 420px) {
  .user-res-card {
    gap: 15px;
  }
}

@media (max-width: 400px) {
  .user-res-card {
    gap: 20px;
  }
}

@media (max-width: 390px) {
  .user-res-card {
    gap: 25px;
  }
}

@media (max-width: 360px) {
  .user-res-card {
    gap: 30px;
  }
}

@media (max-width: 345px) {
  .user-res-card {
    gap: 35px;
  }
}

@media (max-width: 325px) {
  .user-res-card {
    gap: 40px;
  }
}

@media (max-width: 200px) {
  .user-res-card {
    gap: 49px;
  }
}

.user-res-card-btn {
  width: 10rem;
  /* default width */
}

/* ⬇️ 1200px se choti screen pe button chota ho jayega */
@media (max-width: 1200px) {
  .user-res-card-btn {
    width: 8rem !important;
    font-size: 14px;
    padding: 5px 8px;
  }
}

/* ⬇️ 768px (Mobile) ke liye full width button */
@media (max-width: 768px) {
  .user-res-card-btn {
    width: 100% !important;
    font-size: 13px;
    padding: 6px 10px;
  }

  .user-res-card .col-3,
  .user-res-card .col-sm-3,
  .user-res-card .col-md-6 {
    justify-content: center !important;
  }
}

@media(max-width : 991px) {
  .footer-main-container {
    margin: 0px;
    padding: 10px;
    width: 100% !important;
    max-width: 100% !important;
  }

  .footer-main-container .row {
    margin: 0px !important;
    padding: 5px !important;
  }
}

@media(max-width:767px) {
  .contact-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .copyright,
  .footer-heading {
    text-align: start;
  }
  .footer-message {
    margin-left: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.main-search {
  border-radius: 5px;
  padding: 5px 10px;
  transition: border 0.3s, box-shadow 0.3s;
}
.main-search:focus-within {
  background-color: transparent !important;
  border: 1px solid var(--main-theme-color);
  box-shadow: 0 0 5px var(--main-theme-color);
  /* box-shadow: 0 0 5px rgba(74, 144, 226, 0.5); */
}
#searchInput:focus {
  outline: none;
  border: none;
  box-shadow: none;
}
/* .swal2-icon{
  border: none;
  outline: none;
} */
/* 1. General Popup Container */
.swal-sticker-popup {
    border-radius: 20px !important;
    padding: 20px !important;
    background: var(--model-theme-color) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    max-width: 550px;
    text-align: center;
}
.swal2-close{
  font-size: 49px !important;
}
/* 2. Sticker Image Styling */
.swal-sticker-image {
    margin: 0 auto 20px auto !important;
    /* Optional: If the image has a transparent background, you can add a drop shadow */
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

/* 3. Title and Subtitle */
.swal-sticker-title {
    font-size: 25px !important;
    font-weight: 600 !important; /* Extra bold title */
    color: var(--bs-heading-color);
    margin-bottom: 5px;
}
.swal-sticker-subtitle {
    font-size: 16px !important;
    color: #6c757d !important;
    margin-bottom: 25px !important;
}

/* 4. Details Box (High Contrast) */
.swal-detail-box {
    text-align: left !important;
    /* background-color: #f8f9fa; */
    background-color: var(--my-bg-color);
    border: 1px solid #e9ecef;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}
.swal-detail-box p {
    margin-bottom: 6px;
    font-size: 15px;
}
.detail-label {
    font-weight: 700;
    color:  var(--bs-heading-color);
    min-width: 80px;
    display: inline-block;
}
.detail-value {
    font-weight: 500;
    color: #0A5CA5; /* Highlight value with a color */
}

/* 5. Description Text */
.swal-description-text {
    text-align: center;
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* 6. Buttons (Prominent Primary, Subtle Secondary) */

/* Primary Button (Main Action: View Details) */
.btn-primary-sticker {
    background-color: var(--sidebar-bg-color) !important; /* Blue for a clean, action look */
    color: #6c757d !important;
    border: 1px solid #0A5CA5;
      font-weight: 500 !important;
    padding: 10px 30px !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    /* font-weight: 700 !important; */

     transition: all 0.25s ease;  
}
.btn-primary-sticker:hover {
    padding: 11px 32px !important;
    color: white !important; 
      transform: scale(1.0);      
       background-color: #0A5CA5 !important;          /* subtle zoom effect */
    box-shadow: 0 6px 12px rgba(10, 92, 165, 0.4); /* enhance shadow */
}

/* Secondary Button (Close) */
.btn-secondary-close {
    background-color: var(--sidebar-bg-color) !important;
    color: #6c757d !important;
    margin-left: 10px;
    border: 1px solid #0A5CA5 !important; /* No visible border */
    font-size: 16px !important;
    font-weight: 500 !important;
    padding: 12px 35px !important;
    transition: color 0.2s;
    border-radius: 8px !important;
}
/* .btn-secondary-close:hover {
    color: #333 !important;
} */
.detail-label i {
  color: #0A5CA5;
}

.user-profile-col {
    flex: 0 0 16.6667% !important;
    max-width: 16.6667% !important;
}

@media (min-width: 768px) {   /* md */
    .user-profile-col {
        flex: 0 0 16.6667% !important;
        max-width: 16.6667% !important;
    }
}

@media (min-width: 992px) {   /* lg */
    .user-profile-col {
        flex: 0 0 16.6667% !important;
        max-width: 16.6667% !important;
    }
}
#m-btns-Decline .btn-startup{
      margin: 0 !important;
}

.user-profile-col button:disabled  {
    background-color: #dfe6f7 !important;
    color: #7a7a7a !important;
    cursor: not-allowed !important;
    opacity: 0.7;
    display: flex;
    margin-left: 5px;
    width: 82% !important;
}
.user-profile-col button:disabled #btn-eye{
    border: none !important;
        /* padding-right: 10px; */

}
.btn-small{
    width: 8rem !important;   /* chhota button */
    padding: 6px 10px !important;
}
.btn-large{
   width: 8.9rem !important;
}
.btn-approv{
   width: 8rem !important; 
}
.btn-view-job:disabled {
    background-color:#9cb1c49a; /* light grey */
    color: #6c757d; 
    cursor: not-allowed; 
    border: 1px solid #d3cece; 
    opacity: 1; 
}
hr {
  margin: 8px !important;
}
.logout:hover button{
  color: white !important;
}
