@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700&display=swap");
:target {
  scroll-margin-top: 100px;
}

.fancybox__container {
  z-index: 1999;
}

.fancybox__track,
.fancybox__content,
.carousel__track {
  direction: ltr !important;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background-color: white;
}

::-webkit-scrollbar-thumb {
  background: black;
  height: 300px;
}

* {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  box-sizing: border-box;
  scroll-behavior: smooth;
  overscroll-behavior: none;
  -webkit-tap-highlight-color: transparent;
  font-family: "Tajawal", sans-serif;
}

body {
  background-color: #eee;
  overflow-x: hidden;
  position: relative;
}

html[lang=ar] {
  direction: rtl;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

button,
input,
textarea {
  border: none;
  outline: none;
  background: none;
}

.row {
  margin: 0;
  padding: 0;
}

.login-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #11897c;
  color: white;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease-in-out;
  z-index: 9999;
}
.login-icon i {
  font-size: 1.2rem;
}

.login-icon:hover {
  background-color: #11897C;
  transform: scale(1.01);
}

@media print {
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    color-adjust: exact !important;
  }
}
main .header-section {
  position: relative;
  background: linear-gradient(120deg, #0ea596, #046356);
  padding: 20px 20px;
  overflow: hidden;
  text-align: center;
  color: white;
}
/* main .header-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200%;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(-3deg);
} */
main .header-section .content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 756px) {
  main .header-section .content {
    flex-direction: column;
  }
}
main .header-section .content .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
main .header-section .content .logo img {
  max-height: 60px;
  filter: brightness(0) invert(1);
  padding: 0px 10px;
}
main .header-section .content .text h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 1px;
  animation: slideDown 0.8s ease forwards;
}
@media (max-width: 756px) {
  main .header-section .content .text h3 {
    font-size: 1.5rem;
  }
}
main .header-section .content .text p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  animation: fadeIn 1.2s ease forwards;
}
@media (max-width: 756px) {
  main .header-section .content .text p {
    font-size: 1rem;
  }
}
main .header-section .bg-icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
main .header-section .bg-icons i {
  position: absolute;
  font-size: 40px;
  color: rgba(255, 255, 255, 0.08);
  animation: float 6s infinite ease-in-out;
}
main .header-section .bg-icons i:nth-child(1) {
  top: 20%;
  left: 10%;
}
main .header-section .bg-icons i:nth-child(2) {
  top: 60%;
  right: 15%;
}
main .header-section .bg-icons i:nth-child(3) {
  bottom: 15%;
  left: 30%;
}
main .header-section .report-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
main .header-section .report-date p {
  margin: 0;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
main .statistics .stats-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #11897c;
  margin-bottom: 1.5rem;
}
main .statistics .stats-title h4 {
  margin: 0;
  font-weight: bold;
}
main .statistics .stats-title i {
  font-size: 1.3rem;
}
main .statistics .stat-card {
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 15px;
  box-shadow: inset;
  min-height: 100%;
}
main .statistics .stat-card .icon i {
  font-size: 1.5rem;
  color: rgba(248, 245, 245, 0.9098039216);
}
main .statistics .stat-card .info .number {
  font-size: 1.3rem;
  font-weight: bold;
}
main .statistics .stat-card .info .text {
  font-size: 0.8rem;
  opacity: 0.9;
}
main .statistics .stat-card:hover {
  transform: translateY(-2px);
  transition: 0.3s ease-in-out;
}
main .statistics .col-md-4:nth-child(3) .stat-card {
  background: linear-gradient(135deg, #e82c50, rgba(226, 33, 72, 0.862745098));
}
main .statistics .col-md-4:nth-child(2) .stat-card {
  background: linear-gradient(135deg, #f99928, rgba(241, 136, 15, 0.8470588235));
}
main .statistics .col-md-4:nth-child(1) .stat-card {
  background: linear-gradient(135deg, #11897c, rgba(10, 94, 86, 0.7803921569));
}
main .statistics .col-md-3:nth-child(4) .stat-card {
  background: linear-gradient(135deg, #e82c50, rgba(226, 33, 72, 0.862745098));
}
main .statistics .col-md-3:nth-child(3) .stat-card {
  background: linear-gradient(135deg, #2d7c74, rgba(24, 209, 191, 0.7803921569));
}
main .statistics .col-md-3:nth-child(2) .stat-card {
  background: linear-gradient(135deg, #f99928, rgba(241, 136, 15, 0.8470588235));
}
main .statistics .col-md-3:nth-child(1) .stat-card {
  background: linear-gradient(135deg, #11897c, rgba(10, 94, 86, 0.7803921569));
}
main .chart-section .content {
  text-align: center;
  margin-bottom: 20px;
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  padding: 20px 0;
}
main .chart-section .content p {
  color: black;
  margin-bottom: 10px;
}
main .associations-section .section-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #11897C;
}
main .associations-section .section-subtitle {
  font-size: 1rem;
  color: gray;
}
main .associations-section .association-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
main .associations-section .association-card .card-header {
  color: #fff;
  padding: 1rem;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
main .associations-section .association-card .card-header i {
  font-size: 1.3rem;
}
main .associations-section .association-card .card-header .title {
  font-size: 1rem;
  font-weight: bold;
}
main .associations-section .association-card .card-header .subtitle {
  font-size: 0.875rem;
  opacity: 0.9;
}
main .associations-section .association-card .card-stats {
  padding: 0.5rem 1rem;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main .associations-section .association-card .card-stats h3 {
  font-weight: bold;
  font-size: 1.25rem;
}
main .associations-section .association-card .card-stats small {
  color: #6b7280;
}
main .associations-section .association-card .association-list .bg-warn {
  background-color: #fffbeb;
}
main .associations-section .association-card .association-list .bg-second {
  background-color: #f9fafb;
}
main .associations-section .association-card .association-list .bg-red {
  background-color: #fff7ed;
}
main .associations-section .association-card .association-list li {
  border-top: 1px solid #f1f5f9;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main .associations-section .association-card .association-list li .icon-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
main .associations-section .association-card .association-list li img {
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  flex-shrink: 0;
}
main .associations-section .association-card .association-list li h6 {
  font-size: 0.95rem;
  font-weight: 600;
  color: black;
}
main .associations-section .association-card .association-list li small {
  font-size: 0.8rem;
  color: gray;
}
main .associations-section .association-card .association-list li .beneficiaries {
  font-weight: 600;
  color: #0b4e48;
}
main .associations-section .association-card .association-list li .beneficiaries span {
  display: block;
  font-size: 0.8rem;
  color: gray;
}
main .associations-section .num-card {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  padding: 20px 0;
}
main .associations-section .num-card .main-text {
  margin-bottom: 1.5rem;
}
main .associations-section .num-card .stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
main .associations-section .num-card .stats .stat .number {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
  background-color: transparent;
}
main .associations-section .num-card .stats .stat .label {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}
main .associations-section .yellow {
  background-color: #f0b100;
}
main .associations-section .orange {
  background: #f99928;
  color: #f99928;
}
main .associations-section .green {
  background: #11897c;
  color: #11897c;
}
main .associations-section .red {
  background-color: #E5375D;
  color: #E5375D;
}
main .associations-section .main-color {
  background-color: #0EA596;
  color: #0EA596;
}
main .associations-section .gray {
  background: #6b7280;
}
main .login-page {
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .login-page .login-container {
  display: flex;
  width: 100%;
  max-width: 1100px;
  height: 90%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  main .login-page .login-container {
    flex-direction: column;
    box-shadow: none;
    margin: 0 20px;
  }
}
main .login-page .login-image {
  flex: 1;
}
main .login-page .login-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .login-page .login-card {
  flex: 1;
  width: 100%;
  margin: auto;
  padding: 2rem;
}
main .login-page .login-card .logo {
  text-align: center;
  margin-bottom: 1rem;
}
main .login-page .login-card .logo img {
  background-color: white;
  border-radius: 15px;
  padding: 0.6rem;
  border: 1px solid #e5e7eb;
  height: 70px;
}
main .login-page .login-card h4 {
  margin-bottom: 0.5rem;
  text-align: center;
  color: #11897c;
  font-weight: bold;
}
main .login-page .login-card p {
  text-align: center;
  color: gray;
  margin-bottom: 1.5rem;
}
main .login-page .login-card label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.4rem;
  display: inline-block;
}
main .login-page .login-card .form-control,
main .login-page .login-card .form-select {
  border-radius: 8px;
  border: 1px solid #d1d5db;
  padding: 0.6rem 0.9rem;
  font-size: 0.95rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
main .login-page .login-card .form-control:focus,
main .login-page .login-card .form-select:focus {
  border-color: #11897c;
  box-shadow: 0 0 0 0.2rem rgba(14, 165, 150, 0.2);
}
main .login-page .login-card .form-control option,
main .login-page .login-card .form-select option {
  background-color: rgba(14, 165, 150, 0.2);
}
main .login-page .login-card .input-group .btn {
  border: 1px solid #d1d5db;
}
main .login-page .login-card .btn-login {
  background-color: #11897c;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  padding: 0.7rem;
}
main .login-page .login-card .btn-login:hover {
  background-color: #005448;
}

.dashboard {
  display: flex;
  min-height: 100vh;
  background: #f8f9fa;
}
.dashboard .sidebar {
  width: 250px;
  background: #fff;
  border-left: 1px solid #eee;
  padding: 1.2rem 1rem;
  transition: all 0.3s ease;
  position: sticky;
  top: 0;
  height: 100vh;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}
.dashboard .sidebar.collapsed {
  margin-right: -250px;
  opacity: 0;
  visibility: hidden;
}
.dashboard .sidebar .sidebar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #ddd;
}
.dashboard .sidebar .sidebar-header .icon-circle {
  width: 45px;
  height: 45px;
  background: #0EA596;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
.dashboard .sidebar .sidebar-header .text h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #222;
}
.dashboard .sidebar .sidebar-header .text small {
  font-size: 13px;
  color: #777;
}
.dashboard .sidebar .sidebar-menu {
  margin-top: 1.5rem;
}
.dashboard .sidebar .sidebar-menu li {
  margin-bottom: 0.5rem;
}
.dashboard .sidebar .sidebar-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  color: #444;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.dashboard .sidebar .sidebar-menu li a i {
  font-size: 16px;
  color: #888;
  transition: color 0.3s;
}
.dashboard .sidebar .sidebar-menu li a:hover {
  background: #f7f7f7;
  color: #111;
}
.dashboard .sidebar .sidebar-menu li a:hover i {
  color: #0EA596;
}
.dashboard .sidebar .sidebar-menu li a.active {
  background: linear-gradient(135deg, #e8f5e9, #f1f8f6);
  color: #0EA596;
  font-weight: 600;
}
.dashboard .sidebar .sidebar-menu li a.active i {
  color: #0EA596;
}
.dashboard .sidebar .sidebar-menu li a.active::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #0EA596;
  border-radius: 0 5px 5px 0;
}
@media (max-width: 756px) {
  .dashboard .sidebar {
    position: fixed;
    top: 0;
    right: -250px;
    height: 100%;
    transition: right 0.3s ease;
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  .dashboard .sidebar.show {
    right: 0;
    background-color: #fff;
  }
  .dashboard .main.shifted {
    transform: translateX(-250px);
  }
}
.dashboard .admin {
  flex-grow: 1;
  background-color: white;
}
.dashboard .admin .topbar {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 756px) {
  .dashboard .admin .topbar {
    padding: 1rem 1rem;
  }
}
.dashboard .admin .topbar .logout-btn {
  border-color: gray;
  color: gray;
  transition: 0.3s;
  border-radius: 8px;
}
.dashboard .admin .topbar .logout-btn:hover {
  border-color: red;
  color: red;
  background-color: rgba(248, 245, 245, 0.9098039216);
}
.dashboard .admin .topbar .badge-role {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(248, 245, 245, 0.9098039216);
  color: #11897c;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
}
.dashboard .admin .topbar .badge-role i {
  font-size: 14px;
}
.dashboard .admin .content {
  background-color: white;
  /* Modal Styles */
}
.dashboard .admin .content .page {
  animation: fadeIn 0.3s ease;
  padding: 2rem;
}
@media (max-width: 756px) {
  .dashboard .admin .content .page {
    padding: 0;
  }
}
.dashboard .admin .content #reports .reports-filter {
  margin: 1.3rem 1rem 0.5rem 1rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid #eee;
}
.dashboard .admin .content #reports .reports-filter .text {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dashboard .admin .content #reports .reports-filter .text i {
  color: #11897c;
}
.dashboard .admin .content #reports .reports-filter h6 {
  font-weight: 600;
  color: #333;
}
.dashboard .admin .content #reports .reports-filter .btns {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.dashboard .admin .content #reports .reports-filter .btns .btn {
  border-radius: 0.4rem;
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  cursor: pointer;
  transition: 0.3s;
}
.dashboard .admin .content #reports .reports-filter .btns .btn.active {
  background: #11897c;
  color: #fff;
  border-color: #11897c;
  font-weight: 600;
  box-shadow: 0 0 5px rgba(17, 137, 124, 0.4);
}
.dashboard .admin .content #reports .reports-filter .btns .btn:hover:not(.active) {
  background: #11897c;
  color: #fff;
  border-color: #11897c;
}
.dashboard .admin .content #reports .reports-filter .btns .btn-outline {
  border: 1px solid #11897c;
  color: #11897c;
  background: transparent;
}
.dashboard .admin .content #reports .reports-filter .btns .btn-custom {
  border: 2px dashed #11897c;
  color: #11897c;
  background: transparent;
}
.dashboard .admin .content #reports .reports-filter .btns .btn-custom i {
  margin-left: 0.3rem;
}
.dashboard .admin .content #reports .reports-filter .selected-period {
  margin-top: 1rem;
  padding: 0.7rem;
  font-size: 0.9rem;
  color: black;
  background-color: #eff6ff;
  border-radius: 15px;
}
.dashboard .admin .content #reports .reports-filter .selected-period i {
  margin-left: 0.3rem;
  color: #11897c;
}
.dashboard .admin .content #reports .reports-filter .selected-period span {
  color: #11897c;
}
.dashboard .admin .content #reports .reports-filter .selected-period .badge {
  background-color: #11897c;
  color: white;
  padding: 0.5rem;
  border-radius: 0.3rem;
  font-size: 0.75rem;
}
.dashboard .admin .content #reports .reports-filter .custom-period-box {
  border: 2px solid #11897c;
  background-color: #f3f7f7;
  border-radius: 15px;
  padding: 1rem;
}
.dashboard .admin .content #reports .reports-filter .custom-period-box .hed {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 0 0.5rem;
}
.dashboard .admin .content #reports .reports-filter .custom-period-box .hed i {
  color: #11897c;
  font-weight: 600;
}
.dashboard .admin .content #reports .reports-filter .custom-period-box .hed .btn-close {
  font-size: 10px;
}
.dashboard .admin .content #reports .reports-filter .custom-period-box .input-group {
  position: relative;
}
.dashboard .admin .content #reports .reports-filter .custom-period-box .input-group input {
  padding-left: 2.5rem;
  border-radius: 10px;
}
.dashboard .admin .content #reports .reports-filter .custom-period-box .input-group .calendar-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #555;
}
.dashboard .admin .content #reports .no-reports-section {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 2rem;
  margin: 1.3rem 1rem 0.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 200px;
}
.dashboard .admin .content #reports .no-reports-section .no-reports-content .icon {
  font-size: 3rem;
  color: gray;
  margin-bottom: 1rem;
}
.dashboard .admin .content #reports .no-reports-section .no-reports-content .title {
  font-size: 1.25rem;
  font-weight: 600;
  color: black;
  margin: 0.5rem 0;
}
.dashboard .admin .content #reports .no-reports-section .no-reports-content .subtitle {
  font-size: 0.9rem;
  color: gray;
  margin: 0;
}
.dashboard .admin .content #reports .reports-section .cards-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem;
}
.dashboard .admin .content #reports .reports-section .cards-list .report-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.dashboard .admin .content #reports .reports-section .cards-list .report-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.dashboard .admin .content #reports .reports-section .cards-list .report-card .card-header .card-date {
  background: #f1f5f9;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
}
.dashboard .admin .content #reports .reports-section .cards-list .report-card .card-header .card-id {
  font-size: 0.85rem;
  color: #666;
}
.dashboard .admin .content #reports .reports-section .cards-list .report-card .card-header .card-org {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dashboard .admin .content #reports .reports-section .cards-list .report-card .card-header .card-org .org-logo {
  width: 35px;
  height: 35px;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #e5e7eb;
}
.dashboard .admin .content #reports .reports-section .cards-list .report-card .card-header .card-org .org-name {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
}
.dashboard .admin .content #reports .reports-section .cards-list .report-card .card-header .card-org .org-subtitle {
  font-size: 12px;
  color: #666;
}
.dashboard .admin .content #reports .reports-section .cards-list .report-card .card-header .card-org .org-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  height: 20px;
  width: 20px;
  padding: 1rem;
  border-radius: 6px;
}
.dashboard .admin .content #reports .reports-section .cards-list .report-card .card-header .card-org .green {
  background-color: #11897c;
}
.dashboard .admin .content #reports .reports-section .cards-list .report-card .card-header .card-org .orange {
  background-color: #f99928;
}
.dashboard .admin .content #reports .reports-section .cards-list .report-card .card-header .card-org .main-color {
  background-color: #0EA596;
}
.dashboard .admin .content #reports .reports-section .cards-list .report-card .card-stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin: 1rem 0;
}
.dashboard .admin .content #reports .reports-section .cards-list .report-card .card-stats .stat .value {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
}
.dashboard .admin .content #reports .reports-section .cards-list .report-card .card-stats .stat .label {
  font-size: 0.75rem;
  color: #555;
}
.dashboard .admin .content #reports .reports-section .cards-list .report-card .card-footer {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  color: #555;
}
.dashboard .admin .content #reports .reports-section .cards-list .report-card .card-footer .card-location i {
  margin-left: 5px;
  color: #777;
}
.dashboard .admin .content #reports .reports-section .cards-list .text-green {
  color: #11897c;
}
.dashboard .admin .content #reports .reports-section .cards-list .text-orange {
  color: #f99928;
}
.dashboard .admin .content #reports .reports-section .cards-list .text-teal {
  color: #0EA596;
}
.dashboard .admin .content #reports .reports-section .cards-list .text-pink {
  color: #E5375D;
}
.dashboard .admin .content #associations .associations-section .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}
.dashboard .admin .content #associations .associations-section .header .section-title h5 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: black;
}
.dashboard .admin .content #associations .associations-section .header .section-title p {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  color: gray;
}
.dashboard .admin .content #associations .associations-section .header .action .btn-add {
  background: #11897c;
  color: #fff;
  border: none;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}
.dashboard .admin .content #associations .associations-section .header .action .btn-add i {
  margin-left: 6px;
}
.dashboard .admin .content #associations .associations-section .header .action .btn-add:hover {
  background: #10796e;
}
.dashboard .admin .content #associations .associations-section .cards-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin: 1rem;
}
.dashboard .admin .content #associations .associations-section .cards-list .association-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.dashboard .admin .content #associations .associations-section .cards-list .association-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard .admin .content #associations .associations-section .cards-list .association-card .card-header .card-org {
  display: flex;
  gap: 0.5rem;
}
.dashboard .admin .content #associations .associations-section .cards-list .association-card .card-header .card-org .logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #e5e7eb;
}
.dashboard .admin .content #associations .associations-section .cards-list .association-card .card-header .card-org h6 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: black;
}
.dashboard .admin .content #associations .associations-section .cards-list .association-card .card-header .card-org small {
  color: gray;
  font-size: 0.8rem;
}
.dashboard .admin .content #associations .associations-section .cards-list .association-card .card-header .card-actions {
  display: flex;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.dashboard .admin .content #associations .associations-section .cards-list .association-card .card-header .card-actions .btn-icon {
  border: 1px solid #e5e7eb;
  padding: 0.1rem 0.4rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}
.dashboard .admin .content #associations .associations-section .cards-list .association-card .card-header .card-actions .btn-icon i {
  font-size: 0.8rem;
}
.dashboard .admin .content #associations .associations-section .cards-list .association-card .card-header .card-actions .btn-icon.delete {
  color: #dc2626;
}
.dashboard .admin .content #associations .associations-section .cards-list .association-card .card-header .card-actions .btn-icon.edit {
  color: #333;
}
.dashboard .admin .content #associations .associations-section .cards-list .association-card .card-header .card-actions .btn-icon:hover {
  background: #ececec;
}
.dashboard .admin .content #associations .associations-section .cards-list .association-card .card-body {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.dashboard .admin .content #associations .associations-section .cards-list .association-card .card-body .info .email,
.dashboard .admin .content #associations .associations-section .cards-list .association-card .card-body .info .password {
  font-size: 0.85rem;
  margin: 0.2rem 0;
  font-weight: bold;
}
.dashboard .admin .content #associations .associations-section .cards-list .association-card .card-body .info .email span,
.dashboard .admin .content #associations .associations-section .cards-list .association-card .card-body .info .password span {
  color: #0b5fdd;
  font-weight: 500;
}
.dashboard .admin .content #associations .associations-section .cards-list .association-card .card-body .info .pass {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard .admin .content #associations .associations-section .cards-list .association-card .card-body .info .pass i {
  font-size: 0.8rem;
  color: #666;
  cursor: pointer;
}
.dashboard .admin .content #associations .associations-section .cards-list .association-card .card-body .info .pass i:hover {
  color: #000;
}
.dashboard .admin .content #associations .associations-section .cards-list .association-card .card-body .info .pass .password-text {
  background-color: rgba(248, 245, 245, 0.9098039216);
  padding: 0.2rem;
  border-radius: 6px;
}
.dashboard .admin .content .modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.dashboard .admin .content .modal-overlay .modal-content {
  background-color: white;
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}
.dashboard .admin .content .modal-overlay .modal-content .modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-header .modal-title {
  font-weight: 700;
  color: black;
  margin: 0;
  font-size: 1rem;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-header .close-modal {
  background: none;
  border: none;
  font-size: 20px;
  color: gray;
  cursor: pointer;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-subtitle {
  color: gray;
  margin-top: 10px;
  padding: 0 20px;
  font-size: 0.8rem;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body {
  padding: 0px 20px;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .form-group {
  display: flex;
  flex-direction: column;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .form-group .form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .form-group .form-control {
  width: 100%;
  padding: 6px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: border-color 0.3s;
  background-color: rgba(248, 245, 245, 0.9098039216);
  font-size: 0.8rem;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .form-group .form-control:focus {
  border-color: #11897c;
  outline: none;
  box-shadow: 0 0 0 3px rgba(17, 137, 124, 0.1);
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .file-upload {
  border: 2px dashed #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s;
  background-color: white;
  grid-column: span 2;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .file-upload:hover {
  border-color: #11897c;
  background-color: rgba(248, 245, 245, 0.9098039216);
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .file-upload i {
  font-size: 40px;
  color: gray;
  margin-bottom: 10px;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .file-upload .file-info {
  font-size: 12px;
  color: gray;
  margin-top: 5px;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .file-upload .upload-placeholder {
  display: block;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .file-upload .upload-preview,
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .file-upload .edit-upload-preview {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .file-upload .upload-preview .preview-info,
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .file-upload .edit-upload-preview .preview-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .file-upload .upload-preview .preview-info #previewImage,
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .file-upload .upload-preview .preview-info .logo-img,
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .file-upload .edit-upload-preview .preview-info #previewImage,
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .file-upload .edit-upload-preview .preview-info .logo-img {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #e5e7eb;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .file-upload .upload-preview .preview-info .success-message,
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .file-upload .edit-upload-preview .preview-info .success-message {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .file-upload .upload-preview .preview-info .success-message .success-text,
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .file-upload .edit-upload-preview .preview-info .success-message .success-text {
  color: #11897c;
  font-size: 14px;
  font-weight: 600;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .file-upload .upload-preview .preview-info .success-message .success-muted,
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .file-upload .edit-upload-preview .preview-info .success-message .success-muted {
  color: #666;
  font-size: 13px;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .file-upload .upload-preview .remove-btn,
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .file-upload .edit-upload-preview .remove-btn {
  background: none;
  border: 1px solid #E5375D;
  color: #E5375D;
  cursor: pointer;
  font-size: 14px;
  padding: 3px 8px;
  border-radius: 4px;
  transition: background-color 0.4s;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .file-upload .upload-preview .remove-btn:hover,
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .file-upload .edit-upload-preview .remove-btn:hover {
  background-color: rgba(220, 53, 69, 0.1);
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .file-upload .upload-preview.active,
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .file-upload .edit-upload-preview.active {
  display: flex;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body form .file-upload .upload-img {
  display: flex;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body .section-title-modal {
  font-weight: 600;
  color: black;
  font-size: 1rem;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body .password-wrapper {
  position: relative;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body .password-wrapper input {
  padding-right: 40px;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body .password-wrapper .toggle-password {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  font-size: 14px;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body .password-wrapper .toggle-password:hover {
  color: #333;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body .file-info {
  color: #6c757d;
  font-size: 14px;
  margin-top: 5px;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body .required-field::after {
  content: " *";
  color: #E5375D;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-body .form-hint {
  color: gray;
  font-size: 12px;
  margin-top: 5px;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-footer {
  position: sticky;
  bottom: 0;
  left: 0;
  background: #fff;
  padding: 10px 20px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  z-index: 10;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-footer button {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 5px;
  padding: 5px 10px;
  transition: all 0.3s;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-footer .btn-cancel {
  background-color: rgba(248, 245, 245, 0.9098039216);
  color: black;
  border: 1px solid #ddd;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-footer .btn-cancel:hover {
  background-color: #e9ecef;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-footer .btn-save {
  background-color: #11897c;
  color: #fff;
  border: none;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-footer .btn-save i {
  font-size: 14px;
}
.dashboard .admin .content .modal-overlay .modal-content .modal-footer .btn-save:hover {
  background-color: #10796e;
}
@media (max-width: 768px) {
  .dashboard .admin .content .modal-overlay .modal-content {
    max-width: 100%;
  }
  .dashboard .admin .content .modal-overlay .modal-body form {
    grid-template-columns: 1fr;
  }
}
.dashboard .admin .content #locations .geo-areas {
  margin: 1.3rem 1rem 0.5rem 1rem;
}
.dashboard .admin .content #locations .geo-areas .card {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}
.dashboard .admin .content #locations .geo-areas .card h6 {
  font-weight: 600;
  color: black;
  font-size: 0.9rem;
}
.dashboard .admin .content #locations .geo-areas .card h6 i {
  margin-left: 6px;
  color: gray;
}
.dashboard .admin .content #locations .geo-areas .card .form-control,
.dashboard .admin .content #locations .geo-areas .card .form-select {
  border-radius: 8px;
}
.dashboard .admin .content #locations .geo-areas .card .btn-add {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0EA596;
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  font-size: 0.8rem;
}
.dashboard .admin .content #locations .geo-areas .card .btn-add:hover {
  background: #11897C;
}
.dashboard .admin .content #locations .geo-areas .card .btn-add i {
  margin-left: 4px;
}
.dashboard .admin .content #locations .geo-areas .geo-list {
  border-top: none;
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item {
  border: 1px solid #e5e7eb;
  margin: 8px 0;
  border-radius: 15px;
  transition: all 0.3s;
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item .geo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item .geo-header .geo-title {
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item .geo-header .geo-title i {
  color: #0EA596;
  transition: transform 0.3s;
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item .geo-header .geo-title .arrow {
  margin-left: 8px;
  transition: transform 0.3s;
  color: black;
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item .geo-header .geo-title .arrow.open {
  transform: rotate(90deg);
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item .geo-header .badges {
  display: flex;
  gap: 6px;
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item .geo-header .badges .badge {
  border-radius: 6px;
  font-size: 12px;
  padding: 6px 10px;
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item .geo-header .dropdown .btn {
  padding: 2px 6px;
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item .geo-header .dropdown .dropdown-menu {
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item .geo-header .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item .geo-header .dropdown .dropdown-menu .dropdown-item i {
  width: 18px;
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item .geo-header .dropdown .dropdown-menu .dropdown-item.text-danger {
  color: #E5375D !important;
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item .sub-list {
  margin-top: 10px;
  padding-right: 20px;
  display: none;
  background-color: #f8f9fa;
  border-radius: 15px;
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item .sub-list.open {
  display: block;
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item .sub-list .sub-item {
  padding: 12px 0px;
  margin: 6px 0;
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item .sub-list .sub-item .geo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item .sub-list .sub-item .geo-header .geo-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item .sub-list .sub-item .geo-header .geo-title i {
  color: #f99928;
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item .sub-list .sub-item .geo-header .geo-title .arrow {
  transition: transform 0.3s;
  color: black;
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item .sub-list .sub-item .geo-header .geo-title .arrow.open {
  transform: rotate(-90deg);
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item .sub-list .sub-item .center-list {
  margin-top: 8px;
  padding-right: 20px;
  display: none;
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item .sub-list .sub-item .center-list.open {
  display: block;
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item .sub-list .sub-item .center-list .center-item {
  padding: 8px 12px;
  margin: 5px 0;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
  position: relative;
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item .sub-list .sub-item .center-list .center-item:hover .center-item-menu {
  display: block;
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item .sub-list .sub-item .center-list .center-item .icon {
  color: #0EA596;
  margin: 0 4px;
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item .sub-list .sub-item .center-list .center-item .center-item-menu {
  display: none;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.dashboard .admin .content #locations .geo-areas .geo-list .list-group-item .sub-list .sub-item .center-list .center-item .center-item-content {
  display: flex;
  align-items: center;
}
.dashboard .admin .content #locations .geo-areas .dropdown .dropdown-menu .dropdown-item i {
  font-size: 0.6rem;
}
.dashboard .admin .content #analytics .stats-section {
  margin: 1.3rem 1rem 0.5rem 1rem;
}
.dashboard .admin .content #analytics .stats-section .section-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}
.dashboard .admin .content #analytics .stats-section .section-title i {
  margin-left: 0.5rem;
  color: #0EA596;
}
.dashboard .admin .content #analytics .stats-section .stats-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
}
.dashboard .admin .content #analytics .stats-section .stats-cards .stat-card {
  border-radius: 12px;
  padding: 1.2rem;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s;
}
.dashboard .admin .content #analytics .stats-section .stats-cards .stat-card:hover {
  transform: translateY(-5px);
}
.dashboard .admin .content #analytics .stats-section .stats-cards .stat-card .card-title {
  font-size: 0.8rem;
  color: black;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.dashboard .admin .content #analytics .stats-section .stats-cards .stat-card .card-value {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.dashboard .admin .content #analytics .stats-section .stats-cards .stat-card .card-subtitle {
  font-size: 0.7rem;
  color: black;
}
.dashboard .admin .content #analytics .orange {
  color: #f99928;
}
.dashboard .admin .content #analytics .green {
  color: #11897c;
}
.dashboard .admin .content #analytics .red {
  color: #E5375D;
}
.dashboard .admin .content #analytics .blue {
  color: #0EA596;
}
.dashboard .admin .content #analytics .database-section {
  margin: 1.3rem 1rem 0.5rem 1rem;
}
.dashboard .admin .content #analytics .database-section .db-card {
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
}
.dashboard .admin .content #analytics .database-section .db-card .db-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.dashboard .admin .content #analytics .database-section .db-card .db-header .db-title {
  font-weight: 600;
  color: #2c3e50;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}
.dashboard .admin .content #analytics .database-section .db-card .db-header .db-title i {
  margin-left: 0.5rem;
  color: #0EA596;
}
.dashboard .admin .content #analytics .database-section .db-card .db-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.dashboard .admin .content #analytics .database-section .db-card .db-stats .db-stat {
  text-align: center;
  padding: 1rem;
  border-radius: 10px;
  background: rgba(248, 245, 245, 0.9098039216);
}
.dashboard .admin .content #analytics .database-section .db-card .db-stats .db-stat .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.dashboard .admin .content #analytics .database-section .db-card .db-stats .db-stat .stat-label {
  font-size: 0.8rem;
}
.dashboard .admin .content #analytics .database-section .db-card .db-update {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dashboard .admin .content #analytics .database-section .db-card .db-update .update-label {
  font-size: 0.9rem;
  color: #11897c;
}
.dashboard .admin .content #analytics .database-section .db-card .db-update .update-date {
  font-weight: 600;
  color: #2c3e50;
}
@media (max-width: 768px) {
  .dashboard .admin .content #analytics .stats-cards {
    grid-template-columns: 1fr !important;
  }
  .dashboard .admin .content #analytics .db-stats {
    grid-template-columns: 1fr !important;
  }
}
.dashboard .admin .content #media .media-section {
  margin: 1.3rem 1rem 0.5rem 1rem;
}
.dashboard .admin .content #media .media-section .media-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard .admin .content #media .media-section .media-header .media-title {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.dashboard .admin .content #media .media-section .media-header .media-title span {
  font-size: 1rem;
  font-weight: bold;
}
.dashboard .admin .content #media .media-section .media-header .media-title span i {
  color: #0EA596;
}
.dashboard .admin .content #media .media-section .media-header .media-title small {
  color: gray;
  font-size: 0.8rem;
}
.dashboard .admin .content #media .media-section .media-header button {
  padding: 2px 5px;
}
.dashboard .admin .content #media .media-section .stats-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  border: 1px solid #f1f1f1;
}
.dashboard .admin .content #media .media-section .stats-card h3 {
  font-weight: 700;
  color: #11897C;
  margin: 0;
}
.dashboard .admin .content #media .media-section .stats-card p {
  color: #7f8c8d;
  margin: 5px 0 0;
}
.dashboard .admin .content #media .media-section .filters {
  border-radius: 15px;
  padding: 20px;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 20px;
  border: 1px solid #e5e7eb;
}
.dashboard .admin .content #media .media-section .filters h5 {
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.dashboard .admin .content #media .media-section .filters .search input {
  background-color: rgba(248, 245, 245, 0.9098039216);
}
.dashboard .admin .content #media .media-section .filters .form-label {
  font-size: 0.8rem;
  margin-bottom: 6px;
  font-weight: 600;
}
.dashboard .admin .content #media .media-section .filters input,
.dashboard .admin .content #media .media-section .filters select {
  border-radius: 8px;
  font-size: 0.9rem;
}
.dashboard .admin .content #media .media-section .filters .axis-list button {
  border-radius: 8px;
  font-weight: 500;
  margin-bottom: 10px;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  color: white;
}
.dashboard .admin .content #media .media-section .filters .axis-list button.purple {
  color: #6f42c1;
  border: 1px solid #6f42c1;
}
.dashboard .admin .content #media .media-section .filters .axis-list button.blue {
  color: #0d6efd;
  border: 1px solid #0d6efd;
}
.dashboard .admin .content #media .media-section .filters .axis-list button.green {
  color: #198754;
  border: 1px solid #198754;
}
.dashboard .admin .content #media .media-section .filters .axis-list button.red {
  color: #dc3545;
  border: 1px solid #dc3545;
}
.dashboard .admin .content #media .media-section .filters .axis-list button:hover {
  background-color: rgba(248, 245, 245, 0.9098039216);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.dashboard .admin .content #media .media-section .tabs {
  background: rgba(248, 245, 245, 0.9098039216);
  border-radius: 15px;
  display: inline-flex;
  padding: 4px;
  gap: 6px;
}
.dashboard .admin .content #media .media-section .tabs .tab-btn {
  border: none;
  background: transparent;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.25s ease;
  color: #555;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.dashboard .admin .content #media .media-section .tabs .tab-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  color: #000;
}
.dashboard .admin .content #media .media-section .tabs .tab-btn.active {
  background: white;
  color: black;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.dashboard .admin .content #media .media-section .tab-pane {
  display: none;
}
.dashboard .admin .content #media .media-section .tab-pane.active {
  display: block;
}
.dashboard .admin .content #media .media-section .tab-content .media-gallery {
  padding: 0 10px;
}
.dashboard .admin .content #media .media-section .tab-content .media-gallery .media-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.dashboard .admin .content #media .media-section .tab-content .media-gallery .media-cards .media-card {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #e5e7eb;
}
.dashboard .admin .content #media .media-section .tab-content .media-gallery .media-cards .media-card:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.dashboard .admin .content #media .media-section .tab-content .media-gallery .media-cards .media-card:hover .img-wrapper::after {
  opacity: 1;
}
.dashboard .admin .content #media .media-section .tab-content .media-gallery .media-cards .media-card .img-wrapper {
  position: relative;
}
.dashboard .admin .content #media .media-section .tab-content .media-gallery .media-cards .media-card .img-wrapper img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom: 1px solid #f0f0f0;
  display: block;
  width: 100%;
}
.dashboard .admin .content #media .media-section .tab-content .media-gallery .media-cards .media-card .img-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.158), rgba(0, 0, 0, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.dashboard .admin .content #media .media-section .tab-content .media-gallery .media-cards .media-card .img-wrapper .img-icons {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: flex;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.dashboard .admin .content #media .media-section .tab-content .media-gallery .media-cards .media-card .img-wrapper .img-icons a {
  color: black;
  font-size: 0.85rem;
  background: #ecebeb;
  border: 1px solid #e5e7eb;
  padding: 5px 7px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}
.dashboard .admin .content #media .media-section .tab-content .media-gallery .media-cards .media-card .img-wrapper .img-icons a:hover {
  background: #ddd;
}
.dashboard .admin .content #media .media-section .tab-content .media-gallery .media-cards .media-card:hover .img-icons {
  opacity: 1;
}
.dashboard .admin .content #media .media-section .tab-content .media-gallery .date-title {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  gap: 8px;
  font-weight: 500;
  color: #11897C;
  padding: 6px 0;
  font-size: 0.95rem;
}
.dashboard .admin .content #media .media-section .tab-content .media-gallery .date-title .date {
  color: black;
}
.dashboard .admin .content #media .media-section .tab-content .media-gallery .date-title i {
  color: white;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #0EA596;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard .admin .content #media .media-section .tab-content .media-gallery .date-title .badge {
  background: rgba(248, 245, 245, 0.9098039216);
  color: black;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px;
  border-radius: 8px;
  min-width: 24px;
  text-align: center;
  display: inline-block;
}
.dashboard .admin .content #media .media-section .tab-content #folders .breadcrumb-bar {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.dashboard .admin .content #media .media-section .tab-content #folders .breadcrumb-bar .home-icon {
  font-size: 1.2rem;
  color: #666;
  cursor: pointer;
  transition: 0.2s;
}
.dashboard .admin .content #media .media-section .tab-content #folders .breadcrumb-bar .home-icon:hover {
  color: #000;
}
.dashboard .admin .content #media .media-section .tab-content #folders .breadcrumb-bar .breadcrumb-item {
  font-size: 0.95rem;
  color: #333;
  cursor: pointer;
}
.dashboard .admin .content #media .media-section .tab-content #folders .breadcrumb-bar .breadcrumb-item.active {
  font-weight: 600;
  color: #000;
  cursor: default;
}
.dashboard .admin .content #media .media-section .tab-content #folders .breadcrumb-bar .breadcrumb-item::before {
  content: ">";
  margin: 0 0.4rem;
  color: #999;
}
.dashboard .admin .content #media .media-section .tab-content #folders .breadcrumb-bar .breadcrumb-item:first-child::before {
  content: "";
  margin: 0;
}
@media (max-width: 576px) {
  .dashboard .admin .content #media .media-section .tab-content #folders .breadcrumb-bar {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }
  .dashboard .admin .content #media .media-section .tab-content #folders .breadcrumb-bar .home-icon {
    font-size: 1rem;
  }
  .dashboard .admin .content #media .media-section .tab-content #folders .breadcrumb-bar .breadcrumb-item {
    font-size: 0.85rem;
  }
}
.dashboard .admin .content #media .media-section .tab-content #folders .folders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}
.dashboard .admin .content #media .media-section .tab-content #folders .folders-grid .folder-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dashboard .admin .content #media .media-section .tab-content #folders .folders-grid .folder-card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.dashboard .admin .content #media .media-section .tab-content #folders .folders-grid .folder-card .folder-content {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 14px;
}
.dashboard .admin .content #media .media-section .tab-content #folders .folders-grid .folder-card .folder-icon-box {
  background: gray;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard .admin .content #media .media-section .tab-content #folders .folders-grid .folder-card .folder-icon-box .folder-icon {
  font-size: 1.5rem;
  color: white;
}
.dashboard .admin .content #media .media-section .tab-content #folders .folders-grid .folder-card .folder-info .folder-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.3rem;
  color: #222;
}
.dashboard .admin .content #media .media-section .tab-content #folders .folders-grid .folder-card .folder-info .folder-meta {
  display: flex;
  gap: 8px;
}
.dashboard .admin .content #media .media-section .tab-content #folders .folders-grid .folder-card .folder-info .folder-meta .badge {
  font-size: 0.75rem;
  padding: 0.35rem 0.6rem;
  border-radius: 20px;
}
.dashboard .admin .content #media .media-section .tab-content #folders .second .folders-grid .folder-card .folder-icon-box {
  background: #dbeafe;
}
.dashboard .admin .content #media .media-section .tab-content #folders .second .folders-grid .folder-card .folder-icon-box .folder-icon {
  color: blue;
}
.dashboard .admin .content #media .media-section .tab-content #folders .third .folders-grid .folder-card .folder-icon-box {
  background: #eff6ff;
}
.dashboard .admin .content #media .media-section .tab-content #folders .third .folders-grid .folder-card .folder-icon-box .folder-icon {
  color: #11897c;
}
@media (max-width: 992px) {
  .dashboard .admin .content #media .media-section .filters {
    margin-bottom: 25px;
    position: static;
  }
}
.dashboard .admin .content #media .media-section .section-title {
  color: #11897C;
  font-weight: 700;
  margin: 30px 0 15px;
  padding-right: 15px;
  border-right: 3px solid #0EA596;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .dashboard .admin .content .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .dashboard .admin .content .cards-list {
    grid-template-columns: 1fr;
  }
  .dashboard .admin .content .modal-content {
    max-width: 100%;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 756px) {
  .dashboard .dashboard {
    position: relative;
  }
  .dashboard .sidebar {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1000;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    margin-right: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    width: 80%;
    max-width: 300px;
  }
  .dashboard .sidebar.show {
    transform: translateX(0);
  }
  .dashboard .sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .dashboard .sidebar-overlay.show {
    opacity: 1;
    visibility: visible;
  }
  .dashboard .admin {
    width: 100%;
    transition: transform 0.3s ease;
  }
  .dashboard .admin.shifted {
    transform: translateX(-20%);
  }
}
.dashboard .action .btn-add {
  background: #11897c;
  color: #fff;
  border: none;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}
.dashboard .action .btn-add i {
  margin-left: 6px;
}
.dashboard .action .btn-add:hover {
  background: #10796e;
}
.dashboard .report-modal {
  display: flex;
  flex-direction: column;
  height: 90vh;
}
.dashboard .report-modal .modal-dialog {
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.dashboard .report-modal .modal-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.dashboard .report-modal .modal-header {
  background: rgba(248, 245, 245, 0.9098039216);
  color: black;
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 0.8rem 1rem;
  flex-direction: column;
}
.dashboard .report-modal .modal-header .steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 30px 0;
  width: 100%;
}
.dashboard .report-modal .modal-header .steps .step {
  text-align: center;
  position: relative;
  flex: 1;
}
.dashboard .report-modal .modal-header .steps .step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #ccc;
  color: #fff;
  border-radius: 50%;
  z-index: 2;
  font-weight: bold;
}
.dashboard .report-modal .modal-header .steps .step.active span {
  background: #11897c;
}
.dashboard .report-modal .modal-header .steps .step.completed span {
  background: #11897c;
  font-size: 0.8rem;
}
.dashboard .report-modal .modal-header .steps .step.completed span i {
  font-size: 14px;
  color: white;
}
.dashboard .report-modal .modal-header .steps .step::after {
  content: "";
  position: absolute;
  top: 17px;
  left: -50%;
  width: 90%;
  height: 2px;
  background: #ccc;
  z-index: 0;
}
.dashboard .report-modal .modal-header .steps .step.completed::after {
  background: #11897c;
}
.dashboard .report-modal .modal-header .steps .step:last-child::after {
  display: none;
}
.dashboard .report-modal .modal-header .step-desc {
  text-align: center;
}
.dashboard .report-modal .modal-header .step-desc h3 {
  font-size: 1rem;
}
.dashboard .report-modal .modal-header .step-desc p {
  font-size: 0.7rem;
  color: gray;
}
.dashboard .report-modal .step-content {
  display: none;
}
.dashboard .report-modal .step-content.active {
  display: block;
}
.dashboard .report-modal .step-content .step-hed i {
  font-size: 2.5rem;
  color: #11897c;
  margin-bottom: 10px;
}
.dashboard .report-modal .step-content .step-hed h3 {
  font-size: 1.1rem;
}
.dashboard .report-modal .step-content .step-hed p {
  font-size: 0.8rem;
  color: gray;
}
.dashboard .report-modal .step-content .form-label {
  display: flex;
  justify-self: start;
  font-weight: 600;
}
.dashboard .report-modal .step-content input,
.dashboard .report-modal .step-content textarea {
  background-color: rgba(248, 245, 245, 0.9098039216);
}
.dashboard .report-modal .step-content .service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.dashboard .report-modal .step-content .service-options .service-btn {
  border: 1px solid #11897c;
  background-color: white;
  color: #11897c;
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dashboard .report-modal .step-content .service-options .service-btn.active {
  background-color: #11897c;
  color: white;
  border-color: #11897c;
}
.dashboard .report-modal .step-content .province-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.dashboard .report-modal .step-content .province-btn {
  border: 1px solid #11897c;
  background-color: white;
  color: #11897c;
  padding: 5px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}
.dashboard .report-modal .step-content .province-btn.active {
  background-color: #11897c;
  color: white;
}
.dashboard .report-modal .step-content .upload-area {
  position: relative;
  border: 2px dashed #ccc;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  cursor: pointer;
  background-color: #f9f9f9;
}
.dashboard .report-modal .step-content .upload-area input[type=file] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  left: 0;
  top: 0;
  cursor: pointer;
}
.dashboard .report-modal .step-content .upload-placeholder i {
  font-size: 50px;
  color: #6c757d;
  margin-bottom: 10px;
}
.dashboard .report-modal .step-content .upload-placeholder p {
  margin: 0;
  color: #6c757d;
}
.dashboard .report-modal .step-content .file-info {
  font-size: 0.85rem;
  color: #888;
  margin-top: 5px;
}
.dashboard .report-modal .step-content .image-preview img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  border: 1px solid #ddd;
}
.dashboard .report-modal .step-content .image-tips-card {
  background-color: #eff6ff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  color: blue;
  text-align: start;
}
.dashboard .report-modal .step-content .image-tips-card h6 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.dashboard .report-modal .step-content .image-tips-card ul {
  padding: 0px 1.25rem;
  margin-bottom: 0;
  list-style: circle;
}
.dashboard .report-modal .step-content .image-tips-card ul li {
  margin-bottom: 0.25rem;
  font-size: 0.7rem;
  line-height: 1.4;
}
.dashboard .report-modal .option-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e5e7eb;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 10px;
  text-align: start;
}
.dashboard .report-modal .option-box i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  height: 20px;
  width: 20px;
  padding: 1rem;
  border-radius: 6px;
}
.dashboard .report-modal .option-box h6 {
  margin: 0;
  font-size: 0.9rem;
}
.dashboard .report-modal .option-box small {
  font-size: 0.75rem;
  color: #888;
}
.dashboard .report-modal .option-box:hover {
  border-color: #11897c;
  background: #f9f9f9;
}
.dashboard .report-modal .option-box.selected {
  border: 2px solid #11897c;
  background: #f8fff9;
}
.dashboard .report-modal .modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  text-align: center;
}
.dashboard .report-modal .modal-body .icon {
  font-size: 2rem;
  color: #00695c;
  margin-bottom: 10px;
}
.dashboard .report-modal .modal-body .title {
  font-weight: bold;
  margin-bottom: 4px;
}
.dashboard .report-modal .modal-body .desc {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: #777;
}
.dashboard .report-modal .modal-footer {
  border-top: none;
  position: sticky;
  bottom: 0;
  z-index: 10;
  background: white;
  padding: 0.5rem 1rem;
  border-top: 1px solid #e5e7eb;
  justify-content: space-between;
}
.dashboard .report-modal .modal-footer button {
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-weight: 500;
}
.dashboard .report-modal .modal-footer button i {
  font-size: 0.6rem;
}
.dashboard .report-modal .modal-footer .next-btn {
  background-color: #11897c;
  color: white;
}
.dashboard .report-modal .modal-footer .next-btn:hover {
  background-color: #005448;
}

.Society-delegate .header-section {
  background: linear-gradient(120deg, #0ea596, #046356);
  padding: 15px 0;
  /* Responsive */
}
.Society-delegate .header-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.Society-delegate .header-section .container .right-side {
  display: flex;
  align-items: center;
  gap: 15px;
}
.Society-delegate .header-section .container .right-side .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 15px;
  padding: 12px;
}
.Society-delegate .header-section .container .right-side .logo img {
  height: 54px;
}
@media (max-width: 768px) {
  .Society-delegate .header-section .container .right-side .logo img {
    height: 45px;
  }
}
.Society-delegate .header-section .container .right-side .text {
  color: white;
  text-align: right;
}
.Society-delegate .header-section .container .right-side .text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.Society-delegate .header-section .container .right-side .text p {
  font-size: 1rem;
  margin: 0;
  color: rgba(248, 245, 245, 0.9098039216);
}
.Society-delegate .header-section .container .left-side .logout-btn {
  background: rgba(248, 245, 245, 0.9098039216);
  color: #0EA596;
  font-weight: 600;
  border: none;
  padding: 8px 14px;
  border-radius: 15px;
  transition: 0.3s;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.Society-delegate .header-section .container .left-side .logout-btn i {
  font-size: 0.9rem;
}
.Society-delegate .header-section .container .left-side .logout-btn:hover {
  opacity: 0.9;
}
@media (max-width: 768px) {
  .Society-delegate .header-section .container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .Society-delegate .header-section .right-side {
    flex-direction: column;
  }
  .Society-delegate .header-section .left-side .btn-logout {
    width: 100%;
  }
}
.Society-delegate .reports-filter {
  margin: 1.3rem 1rem 0.5rem 1rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid #eee;
}
.Society-delegate .reports-filter .text {
  display: flex;
  align-items: center;
  gap: 10px;
}
.Society-delegate .reports-filter .text i {
  color: #11897c;
}
.Society-delegate .reports-filter h6 {
  font-weight: 600;
  color: #333;
}
.Society-delegate .reports-filter .btns {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.Society-delegate .reports-filter .btns .btn {
  border-radius: 0.4rem;
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  cursor: pointer;
  transition: 0.3s;
}
.Society-delegate .reports-filter .btns .btn.active {
  background: #11897c;
  color: #fff;
  border-color: #11897c;
  font-weight: 600;
  box-shadow: 0 0 5px rgba(17, 137, 124, 0.4);
}
.Society-delegate .reports-filter .btns .btn:hover:not(.active) {
  background: #11897c;
  color: #fff;
  border-color: #11897c;
}
.Society-delegate .reports-filter .btns .btn-outline {
  border: 1px solid #11897c;
  color: #11897c;
  background: transparent;
}
.Society-delegate .reports-filter .btns .btn-custom {
  border: 2px dashed #11897c;
  color: #11897c;
  background: transparent;
}
.Society-delegate .reports-filter .btns .btn-custom i {
  margin-left: 0.3rem;
}
.Society-delegate .reports-filter .selected-period {
  margin-top: 1rem;
  padding: 0.7rem;
  font-size: 0.9rem;
  color: black;
  background-color: #eff6ff;
  border-radius: 15px;
}
.Society-delegate .reports-filter .selected-period i {
  margin-left: 0.3rem;
  color: #11897c;
}
.Society-delegate .reports-filter .selected-period span {
  color: #11897c;
}
.Society-delegate .reports-filter .selected-period .badge {
  background-color: #11897c;
  color: white;
  padding: 0.5rem;
  border-radius: 0.3rem;
  font-size: 0.75rem;
}
.Society-delegate .reports-filter .custom-period-box {
  border: 2px solid #11897c;
  background-color: #f3f7f7;
  border-radius: 15px;
  padding: 1rem;
}
.Society-delegate .reports-filter .custom-period-box .hed {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 0 0.5rem;
}
.Society-delegate .reports-filter .custom-period-box .hed i {
  color: #11897c;
  font-weight: 600;
}
.Society-delegate .reports-filter .custom-period-box .hed .btn-close {
  font-size: 10px;
}
.Society-delegate .reports-filter .custom-period-box .input-group {
  position: relative;
}
.Society-delegate .reports-filter .custom-period-box .input-group input {
  padding-left: 2.5rem;
  border-radius: 10px;
}
.Society-delegate .reports-filter .custom-period-box .input-group .calendar-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #555;
}
.Society-delegate .dashboard-section {
  margin: 1.3rem 0 0.5rem 0;
}
.Society-delegate .dashboard-section .bg-green {
  background: #11897c;
}
.Society-delegate .dashboard-section .bg-orange {
  background: #f99928;
}
.Society-delegate .dashboard-section .bg-teal {
  background: #0EA596;
}
.Society-delegate .dashboard-section .bg-red {
  background: #E5375D;
}
.Society-delegate .dashboard-section .toggle-buttons {
  display: flex;
  background-color: rgba(248, 245, 245, 0.9098039216);
  border-radius: 8px;
  overflow: hidden;
}
.Society-delegate .dashboard-section .toggle-buttons .toggle-btn {
  flex: 1;
  text-align: center;
  background: rgba(248, 245, 245, 0.9098039216);
  border: none;
  border-radius: 0;
  padding: 8px 0;
  font-weight: 600;
  color: black;
  transition: 0.3s;
}
.Society-delegate .dashboard-section .toggle-buttons .toggle-btn.active {
  background: white;
  border-radius: 15px;
}
.Society-delegate .dashboard-section .toggle-buttons .toggle-btn:hover {
  background: #ddd;
  border-radius: 15px;
}
.Society-delegate .dashboard-section .content-box {
  display: none;
}
.Society-delegate .dashboard-section .content-box.active {
  display: block;
}
.Society-delegate .dashboard-section .stat-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.Society-delegate .dashboard-section .stat-card .header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.Society-delegate .dashboard-section .stat-card .header .icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
}
.Society-delegate .dashboard-section .stat-card .header h6 {
  font-weight: 700;
  margin: 0;
}
.Society-delegate .dashboard-section .stat-card .info {
  margin-top: 10px;
}
.Society-delegate .dashboard-section .stat-card .info .d-flex {
  margin: 4px 0;
  font-size: 0.95rem;
  color: #555;
}
.Society-delegate .dashboard-section .stat-card .info .d-flex .num {
  font-weight: 700;
  color: #11897c;
}
.Society-delegate .dashboard-section .average-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.Society-delegate .dashboard-section .average-box h6 {
  font-weight: 700;
  color: black;
}
.Society-delegate .dashboard-section .average-box .value {
  font-size: 26px;
  font-weight: bold;
  color: #11897c;
  margin: 10px 0;
}
.Society-delegate .dashboard-section .average-box small {
  color: gray;
}
.Society-delegate .dashboard-section .reports-placeholder .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}
@media (max-width: 756px) {
  .Society-delegate .dashboard-section .reports-placeholder .header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.Society-delegate .dashboard-section .reports-placeholder .header .section-title h5 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: black;
}
.Society-delegate .dashboard-section .reports-placeholder .header .section-title p {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  color: gray;
}
.Society-delegate .dashboard-section .reports-placeholder .header .action {
  display: flex;
  gap: 10px;
}
.Society-delegate .dashboard-section .reports-placeholder .header .action .btn-add {
  background: #11897c;
  color: #fff;
  border: none;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}
.Society-delegate .dashboard-section .reports-placeholder .header .action .btn-add i {
  margin-left: 6px;
}
.Society-delegate .dashboard-section .reports-placeholder .header .action .btn-add:hover {
  background: #10796e;
}
.Society-delegate .dashboard-section .reports-placeholder .header .action .btn-pdf {
  background: #E5375D;
  color: white;
  border: none;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}
.Society-delegate .dashboard-section .reports-placeholder .header .action .btn-pdf i {
  margin-left: 6px;
}
.Society-delegate .dashboard-section .reports-placeholder .header .action .btn-pdf:hover {
  background: #cf2d38;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .report-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .report-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .report-card .card-header .card-date {
  background: #f1f5f9;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .report-card .card-header .card-id {
  font-size: 0.85rem;
  color: #666;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .report-card .card-header .card-org {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .report-card .card-header .card-org .org-logo {
  width: 35px;
  height: 35px;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #e5e7eb;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .report-card .card-header .card-org .org-name {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .report-card .card-header .card-org .org-subtitle {
  font-size: 12px;
  color: #666;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .report-card .card-header .card-org .org-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  height: 20px;
  width: 20px;
  padding: 1rem;
  border-radius: 6px;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .report-card .card-header .card-org .green {
  background-color: #11897c;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .report-card .card-header .card-org .orange {
  background-color: #f99928;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .report-card .card-header .card-org .main-color {
  background-color: #0EA596;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .report-card .card-stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin: 1rem 0;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .report-card .card-stats .stat .value {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .report-card .card-stats .stat .label {
  font-size: 0.75rem;
  color: #555;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .report-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #555;
  margin-top: 0.5rem;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .report-card .card-footer .card-location {
  display: flex;
  align-items: center;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .report-card .card-footer .card-location i {
  margin-left: 5px;
  color: #777;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .report-card .card-footer .card-actions {
  display: flex;
  gap: 0.5rem;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .report-card .card-footer .card-actions button {
  border: none;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .report-card .card-footer .card-actions button i {
  font-size: 0.8rem;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .report-card .card-footer .card-actions .btn-edit {
  border: 1px solid #11897c;
  color: #11897c;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .report-card .card-footer .card-actions .btn-edit:hover {
  background: #11897c;
  color: white;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .report-card .card-footer .card-actions .btn-delete {
  color: #E5375D;
  border: 1px solid #E5375D;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .report-card .card-footer .card-actions .btn-delete:hover {
  background: #E5375D;
  color: white;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .text-green {
  color: #11897c;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .text-orange {
  color: #f99928;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .text-teal {
  color: #0EA596;
}
.Society-delegate .dashboard-section .reports-placeholder .reports-section .cards-list .text-pink {
  color: #E5375D;
}
.Society-delegate .dashboard-section .report-modal {
  display: flex;
  flex-direction: column;
  height: 90vh;
}
.Society-delegate .dashboard-section .report-modal .modal-dialog {
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.Society-delegate .dashboard-section .report-modal .modal-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.Society-delegate .dashboard-section .report-modal .modal-header {
  background: rgba(248, 245, 245, 0.9098039216);
  color: black;
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 0.8rem 1rem;
  flex-direction: column;
}
.Society-delegate .dashboard-section .report-modal .modal-header .steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 30px 0;
  width: 100%;
}
.Society-delegate .dashboard-section .report-modal .modal-header .steps .step {
  text-align: center;
  position: relative;
  flex: 1;
}
.Society-delegate .dashboard-section .report-modal .modal-header .steps .step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #ccc;
  color: #fff;
  border-radius: 50%;
  z-index: 2;
  font-weight: bold;
}
.Society-delegate .dashboard-section .report-modal .modal-header .steps .step.active span {
  background: #11897c;
}
.Society-delegate .dashboard-section .report-modal .modal-header .steps .step.completed span {
  background: #11897c;
  font-size: 0.8rem;
}
.Society-delegate .dashboard-section .report-modal .modal-header .steps .step.completed span i {
  font-size: 14px;
  color: white;
}
.Society-delegate .dashboard-section .report-modal .modal-header .steps .step::after {
  content: "";
  position: absolute;
  top: 17px;
  left: -50%;
  width: 90%;
  height: 2px;
  background: #ccc;
  z-index: 0;
}
.Society-delegate .dashboard-section .report-modal .modal-header .steps .step.completed::after {
  background: #11897c;
}
.Society-delegate .dashboard-section .report-modal .modal-header .steps .step:last-child::after {
  display: none;
}
.Society-delegate .dashboard-section .report-modal .modal-header .step-desc {
  text-align: center;
}
.Society-delegate .dashboard-section .report-modal .modal-header .step-desc h3 {
  font-size: 1rem;
}
.Society-delegate .dashboard-section .report-modal .modal-header .step-desc p {
  font-size: 0.7rem;
  color: gray;
}
.Society-delegate .dashboard-section .report-modal .step-content {
  display: none;
}
.Society-delegate .dashboard-section .report-modal .step-content.active {
  display: block;
}
.Society-delegate .dashboard-section .report-modal .step-content .step-hed i {
  font-size: 2.5rem;
  color: #11897c;
  margin-bottom: 10px;
}
.Society-delegate .dashboard-section .report-modal .step-content .step-hed h3 {
  font-size: 1.1rem;
}
.Society-delegate .dashboard-section .report-modal .step-content .step-hed p {
  font-size: 0.8rem;
  color: gray;
}
.Society-delegate .dashboard-section .report-modal .step-content .form-label {
  display: flex;
  justify-self: start;
  font-weight: 600;
}
.Society-delegate .dashboard-section .report-modal .step-content input,
.Society-delegate .dashboard-section .report-modal .step-content textarea {
  background-color: rgba(248, 245, 245, 0.9098039216);
}
.Society-delegate .dashboard-section .report-modal .step-content .service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.Society-delegate .dashboard-section .report-modal .step-content .service-options .service-btn {
  border: 1px solid #11897c;
  background-color: white;
  color: #11897c;
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.Society-delegate .dashboard-section .report-modal .step-content .service-options .service-btn.active {
  background-color: #11897c;
  color: white;
  border-color: #11897c;
}
.Society-delegate .dashboard-section .report-modal .step-content .province-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.Society-delegate .dashboard-section .report-modal .step-content .province-btn {
  border: 1px solid #11897c;
  background-color: white;
  color: #11897c;
  padding: 5px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}
.Society-delegate .dashboard-section .report-modal .step-content .province-btn.active {
  background-color: #11897c;
  color: white;
}
.Society-delegate .dashboard-section .report-modal .step-content .upload-area {
  position: relative;
  border: 2px dashed #ccc;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  cursor: pointer;
  background-color: #f9f9f9;
}
.Society-delegate .dashboard-section .report-modal .step-content .upload-area input[type=file] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  left: 0;
  top: 0;
  cursor: pointer;
}
.Society-delegate .dashboard-section .report-modal .step-content .upload-placeholder i {
  font-size: 50px;
  color: #6c757d;
  margin-bottom: 10px;
}
.Society-delegate .dashboard-section .report-modal .step-content .upload-placeholder p {
  margin: 0;
  color: #6c757d;
}
.Society-delegate .dashboard-section .report-modal .step-content .file-info {
  font-size: 0.85rem;
  color: #888;
  margin-top: 5px;
}
.Society-delegate .dashboard-section .report-modal .step-content .image-preview img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  border: 1px solid #ddd;
}
.Society-delegate .dashboard-section .report-modal .step-content .image-tips-card {
  background-color: #eff6ff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  color: blue;
  text-align: start;
}
.Society-delegate .dashboard-section .report-modal .step-content .image-tips-card h6 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.Society-delegate .dashboard-section .report-modal .step-content .image-tips-card ul {
  padding: 0px 1.25rem;
  margin-bottom: 0;
  list-style: circle;
}
.Society-delegate .dashboard-section .report-modal .step-content .image-tips-card ul li {
  margin-bottom: 0.25rem;
  font-size: 0.7rem;
  line-height: 1.4;
}
.Society-delegate .dashboard-section .report-modal .option-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e5e7eb;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 10px;
  text-align: start;
}
.Society-delegate .dashboard-section .report-modal .option-box i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  height: 20px;
  width: 20px;
  padding: 1rem;
  border-radius: 6px;
}
.Society-delegate .dashboard-section .report-modal .option-box h6 {
  margin: 0;
  font-size: 0.9rem;
}
.Society-delegate .dashboard-section .report-modal .option-box small {
  font-size: 0.75rem;
  color: #888;
}
.Society-delegate .dashboard-section .report-modal .option-box:hover {
  border-color: #11897c;
  background: #f9f9f9;
}
.Society-delegate .dashboard-section .report-modal .option-box.selected {
  border: 2px solid #11897c;
  background: #f8fff9;
}
.Society-delegate .dashboard-section .report-modal .modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  text-align: center;
}
.Society-delegate .dashboard-section .report-modal .modal-body .icon {
  font-size: 2rem;
  color: #00695c;
  margin-bottom: 10px;
}
.Society-delegate .dashboard-section .report-modal .modal-body .title {
  font-weight: bold;
  margin-bottom: 4px;
}
.Society-delegate .dashboard-section .report-modal .modal-body .desc {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: #777;
}
.Society-delegate .dashboard-section .report-modal .modal-footer {
  border-top: none;
  position: sticky;
  bottom: 0;
  z-index: 10;
  background: white;
  padding: 0.5rem 1rem;
  border-top: 1px solid #e5e7eb;
  justify-content: space-between;
}
.Society-delegate .dashboard-section .report-modal .modal-footer button {
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-weight: 500;
}
.Society-delegate .dashboard-section .report-modal .modal-footer button i {
  font-size: 0.6rem;
}
.Society-delegate .dashboard-section .report-modal .modal-footer .next-btn {
  background-color: #11897c;
  color: white;
}
.Society-delegate .dashboard-section .report-modal .modal-footer .next-btn:hover {
  background-color: #005448;
}
.Society-delegate #media .media-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.Society-delegate #media .media-header .media-title {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.Society-delegate #media .media-header .media-title span {
  font-size: 1rem;
  font-weight: bold;
}
.Society-delegate #media .media-header .media-title span i {
  color: #0EA596;
}
.Society-delegate #media .media-header .media-title small {
  color: gray;
  font-size: 0.8rem;
}
.Society-delegate #media .media-gallery {
  padding: 0 10px;
}
.Society-delegate #media .media-gallery .media-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.Society-delegate #media .media-gallery .media-cards .media-card {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #e5e7eb;
}
.Society-delegate #media .media-gallery .media-cards .media-card:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.Society-delegate #media .media-gallery .media-cards .media-card:hover .img-wrapper::after {
  opacity: 1;
}
.Society-delegate #media .media-gallery .media-cards .media-card .img-wrapper {
  position: relative;
}
.Society-delegate #media .media-gallery .media-cards .media-card .img-wrapper img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom: 1px solid #f0f0f0;
  display: block;
  width: 100%;
}
.Society-delegate #media .media-gallery .media-cards .media-card .img-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.158), rgba(0, 0, 0, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.Society-delegate #media .media-gallery .media-cards .media-card .img-wrapper .img-icons {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: flex;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.Society-delegate #media .media-gallery .media-cards .media-card .img-wrapper .img-icons a {
  color: black;
  font-size: 0.85rem;
  background: #ecebeb;
  border: 1px solid #e5e7eb;
  padding: 5px 7px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}
.Society-delegate #media .media-gallery .media-cards .media-card .img-wrapper .img-icons a:hover {
  background: #ddd;
}
.Society-delegate #media .media-gallery .media-cards .media-card:hover .img-icons {
  opacity: 1;
}
.Society-delegate #media .media-gallery .date-title {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  gap: 8px;
  font-weight: 500;
  color: #11897C;
  padding: 6px 0;
  font-size: 0.95rem;
}
.Society-delegate #media .media-gallery .date-title .date {
  color: black;
}
.Society-delegate #media .media-gallery .date-title i {
  color: white;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #0EA596;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Society-delegate #media .media-gallery .date-title .badge {
  background: rgba(248, 245, 245, 0.9098039216);
  color: black;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px;
  border-radius: 8px;
  min-width: 24px;
  text-align: center;
  display: inline-block;
}

.Axes-statistics .container {
  max-width: 1200px;
}
.Axes-statistics .stats-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f7941d;
  margin-bottom: 1.5rem;
}
.Axes-statistics .stats-title h4 {
  margin: 0;
  font-weight: bold;
}
.Axes-statistics .stats-title i {
  font-size: 1.3rem;
}
.Axes-statistics .stat-card {
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  min-height: 100%;
}
.Axes-statistics .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.Axes-statistics .stat-card .stat-title {
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.Axes-statistics .stat-card .stat-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.Axes-statistics .stat-card .stat-details .item {
  flex: 1;
  text-align: center;
}
.Axes-statistics .stat-card .stat-details .item h3 {
  margin: 0;
  font-weight: bold;
  font-size: 1.3rem;
}
.Axes-statistics .stat-card .stat-details .item p {
  margin: 4px 0 0;
  color: gray;
  font-size: 0.9rem;
}
.Axes-statistics .col-md-3:nth-child(1) .stat-card {
  background: linear-gradient(135deg, rgba(17, 137, 125, 0.1215686275), rgba(10, 94, 86, 0.0745098039));
  border: 1px solid #11897c;
}
.Axes-statistics .col-md-3:nth-child(1) .stat-card .stat-title {
  color: #11897c;
}
.Axes-statistics .col-md-3:nth-child(2) .stat-card {
  background: linear-gradient(135deg, rgba(249, 151, 40, 0.0666666667), rgba(241, 135, 15, 0.1764705882));
  border: 1px solid #f99928;
}
.Axes-statistics .col-md-3:nth-child(2) .stat-card .stat-title {
  color: #f99928;
}
.Axes-statistics .col-md-3:nth-child(3) .stat-card {
  background: linear-gradient(135deg, rgba(106, 216, 205, 0.2392156863), rgba(106, 216, 205, 0.1215686275));
  border: 1px solid #6ad8cd;
}
.Axes-statistics .col-md-3:nth-child(3) .stat-card .stat-title {
  color: #6ad8cd;
}
.Axes-statistics .col-md-3:nth-child(4) .stat-card {
  background: linear-gradient(135deg, rgba(232, 44, 79, 0.1019607843), rgba(226, 33, 72, 0.0823529412));
  border: 1px solid #e82c50;
}
.Axes-statistics .col-md-3:nth-child(4) .stat-card .stat-title {
  color: #e82c50;
}

.best-associations .container {
  max-width: 1200px;
}
.best-associations .stats-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #11897c;
  margin-bottom: 1.5rem;
}
.best-associations .stats-title h4 {
  margin: 0;
  font-weight: bold;
}
.best-associations .stats-title i {
  font-size: 1.3rem;
}
.best-associations .custom-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  font-family: "Cairo", sans-serif;
}
.best-associations .custom-table thead {
  background: linear-gradient(135deg, #11897c, rgba(10, 94, 86, 0.7803921569));
  color: #fff;
}
.best-associations .custom-table thead th {
  padding: 12px 15px;
  font-weight: 600;
  font-size: 0.95rem;
}
.best-associations .custom-table tbody tr {
  transition: background 0.3s ease;
}
.best-associations .custom-table tbody tr:nth-child(odd) {
  background-color: #fff;
}
.best-associations .custom-table tbody tr:nth-child(even) {
  background-color: #f7f7f7;
}
.best-associations .custom-table tbody tr:hover {
  background-color: #eef7f6;
}
.best-associations .custom-table tbody tr td {
  padding: 10px 15px;
  color: #333;
  font-size: 0.9rem;
}
.best-associations .custom-table tbody tr .highlight {
  color: #f7941d;
  font-weight: 600;
  font-size: 1rem;
}
.best-associations .custom-table tbody tr .highlight2 {
  color: #11897c;
  font-weight: 600;
  font-size: 1rem;
}
.best-associations .custom-table tbody tr .rank {
  display: inline-block;
  background-color: #11897c;
  color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  line-height: 28px;
  font-weight: bold;
  font-size: 0.85rem;
}

.detailed-reports .container {
  max-width: 1200px;
}
.detailed-reports .stats-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0EA596;
  margin-bottom: 1.5rem;
}
.detailed-reports .stats-title h4 {
  margin: 0;
  font-weight: bold;
}
.detailed-reports .stats-title i {
  font-size: 1.3rem;
}
.detailed-reports .custom-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
}
.detailed-reports .custom-table thead {
  background: linear-gradient(135deg, #11897c, rgba(10, 94, 86, 0.7803921569));
  color: #fff;
}
.detailed-reports .custom-table thead th {
  padding: 12px 15px;
  font-weight: 600;
  font-size: 0.95rem;
}
.detailed-reports .custom-table tbody tr:nth-child(odd) {
  background-color: #fff;
}
.detailed-reports .custom-table tbody tr:nth-child(even) {
  background-color: #f7f7f7;
}
.detailed-reports .custom-table tbody tr:hover {
  background-color: #eef7f6;
}
.detailed-reports .custom-table tbody tr td {
  padding: 10px 15px;
  color: #333;
  font-size: 0.9rem;
}
.detailed-reports .custom-table tbody tr .highlight {
  font-weight: 600;
  font-size: 1rem;
}
.detailed-reports .custom-table tbody tr .highlight--orange {
  color: #f7941d;
}
.detailed-reports .custom-table tbody tr .highlight--teal {
  color: #0ea596;
}
.detailed-reports .custom-table tbody tr .highlight--red {
  color: #e82c50;
}
.detailed-reports .custom-table tbody tr .tag {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
}
.detailed-reports .custom-table tbody tr .tag.green {
  background-color: #58b496;
}
.detailed-reports .custom-table tbody tr .tag.blue {
  background-color: #75c0e0;
}
.detailed-reports .custom-table tbody tr .tag.pink {
  background-color: #e78bb0;
}
.detailed-reports .custom-table tbody tr .tag.orange {
  background-color: #f2b76b;
}
.detailed-reports .table-note {
  font-size: 0.95rem;
  color: #555;
  text-align: center;
  background-color: #eef7f6;
  padding: 10px;
  border-radius: 15px;
}

.footer {
  background: rgba(144, 223, 215, 0.0666666667);
  padding: 15px 0;
  border-top: 2px solid #0EA596;
  bottom: 0;
}
.footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer .footer-text .main-text {
  font-weight: 600;
  font-size: 1rem;
  color: #0EA596;
  margin: 0;
}
.footer .footer-text .sub-text {
  font-size: 0.9rem;
  color: gray;
  margin: 0;
}
.footer .footer-date {
  text-align: left;
  color: gray;
  font-size: 0.9rem;
}

.mangment-page {
  /* تصميم المودال */
  /* لون المحور */
  /* الخدمات */
  /* اللون عند التمرير (hover) */
  /* اللون عند التفعيل (active) */
}
.mangment-page .managment-statistics .stat-card {
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 10px;
}
.mangment-page .managment-statistics .card-1 {
  background-color: #e3f2fd;
  border: #88cafa solid 1px;
}
.mangment-page .managment-statistics .card-1 .icon {
  color: white;
  background-color: #0095ff;
  padding: 6px 12px;
  font-size: 18px;
  border-radius: 10px;
}
.mangment-page .managment-statistics .card-1 .info h5 {
  color: #226efc;
}
.mangment-page .managment-statistics .card-1 .info h4 {
  color: #0043be !important;
}
.mangment-page .managment-statistics .card-2 {
  background-color: #e8f5e9;
  border: #9afaa2 solid 1px;
}
.mangment-page .managment-statistics .card-2 .icon {
  color: white;
  background-color: #00ac0e;
  padding: 6px 12px;
  font-size: 18px;
  border-radius: 10px;
}
.mangment-page .managment-statistics .card-2 .info h5 {
  color: #01a50f;
}
.mangment-page .managment-statistics .card-2 .info h4 {
  color: #008d0c;
}
.mangment-page .managment-statistics .card-3 {
  background-color: #f3e5f5;
  border: #f2a9fc solid 1px;
}
.mangment-page .managment-statistics .card-3 .icon {
  color: white;
  background-color: rgba(152, 0, 175, 0.8705882353);
  padding: 6px 12px;
  font-size: 18px;
  border-radius: 10px;
}
.mangment-page .managment-statistics .card-3 .info h5 {
  color: rgba(167, 2, 192, 0.8705882353);
}
.mangment-page .managment-statistics .card-3 .info h4 {
  color: rgba(136, 0, 156, 0.8705882353);
}
.mangment-page .managment-statistics .card-4 {
  background-color: #fff3e0;
  border: #ffd592 solid 1px;
}
.mangment-page .managment-statistics .card-4 .icon {
  color: white;
  background-color: #c57a00;
  padding: 6px 12px;
  font-size: 18px;
  border-radius: 10px;
}
.mangment-page .managment-statistics .card-4 .info h5 {
  color: #945b00;
}
.mangment-page .managment-statistics .card-4 .info h4 {
  color: #774900;
}
.mangment-page .managment-statistics .info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 4px;
}
.mangment-page .add-axis-modal {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: none;
  font-family: "Cairo", sans-serif;
}
.mangment-page .color-section {
  background: #f8f9fa;
}
.mangment-page .color-preview {
  width: 50px;
  height: 50px;
  background: #106b62;
  border: 2px solid #ddd;
}
.mangment-page .color-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.mangment-page .color-btn:hover {
  transform: scale(1.1);
}
.mangment-page .services-section {
  background: #f8f9fa;
}
.mangment-page .add-service-box {
  background: #ffffff;
  border: 1px solid #e0e0e0;
}
.mangment-page .service-tag {
  background: #eafaf3;
  color: #106b62;
  border: 1px solid #b7e4c7;
  padding: 6px 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mangment-page .service-tag button {
  background: none;
  border: none;
  color: #dc3545;
  font-weight: bold;
  cursor: pointer;
}
.mangment-page .service-tag button:hover {
  opacity: 0.8;
}
.mangment-page .color-btn[data-color="#ff7b00"] {
  background-color: #ff7b00;
}
.mangment-page .color-btn[data-color="#f54291"] {
  background-color: #f54291;
}
.mangment-page .color-btn[data-color="#9155f4"] {
  background-color: #9155f4;
}
.mangment-page .color-btn[data-color="#2bd6cb"] {
  background-color: #2bd6cb;
}
.mangment-page .color-btn[data-color="#106b62"] {
  background-color: #106b62;
}
.mangment-page .bg-color-pallet {
  background-color: #f5f5f5;
}
.mangment-page .btn--outline {
  border: 1px solid #1c9c8f;
  color: #106b62;
  background: transparent;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mangment-page .btn--outline:hover {
  background-color: #106b62;
  color: #fff;
}
.mangment-page .btn--outline.active {
  background-color: #106b62;
  color: #fff;
}
.mangment-page .bg-socity2 {
  background-color: #106b62;
}
.mangment-page .hash-color {
  width: 65px;
}/*# sourceMappingURL=style.css.map */