/* Bank Details Section Styles */
.bank-details-section {
  width: 100%;
  padding: 3rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.bank-details-wrapper {
  width: 70%;
  margin: 0 auto;
  max-width: 1200px;
  box-sizing: border-box;
}

.bank-details-container {
  background: #eaf6ff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  overflow: hidden;
}

.bank-header {
  text-align: center;
  margin-bottom: 2rem;
}

.bank-header h2 {
  color: rgb(66, 202, 255);
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.bank-name {
  display: inline-block;
  background: rgb(77, 204, 255);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.bank-details-content {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.bank-info {
  background: white;
  border-radius: 8px;
  padding: 0.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bank-qr-code {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  width: 220px;
  height: 220px;
}

.qr-code-box {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 6px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  border: 1px solid #e8ecf1;
  box-sizing: border-box;
}

.bank-qr-code .qr-code-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: none;
  padding: 0;
  box-shadow: none;
  border-radius: 8px;
}

.qr-code-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #999;
}

.qr-code-placeholder i {
  font-size: 4rem;
  color: #ccc;
}

.qr-code-placeholder p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid #eee;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: 500;
  color: #333;
}

.info-value {
  text-align: center;
  color: #222;
}

.copy-btn {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s;
}

.copy-btn:hover {
  color: #e91e63;
}

.bank-notice {
  background: #ffeef2;
  border-radius: 8px;
  padding: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
  width: 100%;
  box-sizing: border-box;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.bank-notice p {
  margin: 0.5rem 0;
  white-space: normal;
  text-align: center;
  word-wrap: break-word;
}

.bank-notice strong {
  color: #e91e63;
  font-weight: 600;
  display: inline-block;
}

/* Tablet View */
@media (max-width: 1024px) {
  .bank-details-wrapper {
    width: 85%;
  }
  
  .bank-details-content {
    gap: 1.5rem;
    align-items: center;
  }
  
  .bank-qr-code {
    width: 180px;
    height: 180px;
  }
  
  .qr-code-box {
    width: 100%;
    height: 100%;
  }
  
  .qr-code-placeholder i {
    font-size: 3.5rem;
  }
}

/* Mobile View */
@media (max-width: 767px) {
  .bank-details-section {
    padding: 1rem 0;
  }
  
  .bank-details-wrapper {
    width: 100%;
  }
  
  .bank-details-container {
    background: none;
    border-radius: 0;
    padding: 13px;
    box-shadow: none;
    margin: 0;
  }
  
  .bank-header h2 {
    font-size: 1.2rem;
  }
  
  .bank-name {
    font-size: 0.75rem;
    padding: 0.2rem 0.8rem;
  }
  
  .bank-details-content {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .bank-info {
    border-radius: 0;
    padding: 0;
    order: 1;
    text-align: center;
  }
  
  .bank-qr-code {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .qr-code-box {
    width: 180px;
    height: 180px;
    margin: 0 auto;
  }
  
  .qr-code-placeholder i {
    font-size: 3rem;
  }
  
  .qr-code-placeholder p {
    font-size: 0.8rem;
  }
  
  .info-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    margin: 0;
    padding: 0.75rem 0;
  }
  
  .info-label {
    font-size: 0.75rem;
    width: 100%;
    text-align: center;
  }
  
  .info-value {
    text-align: center;
    font-size: 0.7rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
  }
  
  .copy-btn {
    padding: 0.15rem;
    font-size: 0.7rem;
  }
  
  .bank-notice {
    border-radius: 0;
    margin: 1rem 0;
    padding: 1rem;
    width: 100%;
    overflow-x: visible;
  }
  
  .bank-notice p {
    font-size: 0.85rem;
    padding-right: 0;
    width: 100%;
  }
}

/* Base Styles */
:root {
  /* Colors */
  --primary-color: #ff69b4;
  --text-dark: #333;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #eee;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.05);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;

  /* Layout */
  --container-width: 1200px;

}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary-color);
  text-align: center;
  margin: 0 0 1rem;
}


/* Slider Section */
.slider-container {
  width: 100%;
  max-width: 100%;
  height: 600px;
  margin: 30px auto 0;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-light);
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4,0,0.2,1);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.slider-slide.active {
  opacity: 1;
  z-index: 2;
}

.slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.slider-heading {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  margin: 0 auto;
  width: 90%;
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--primary-color);
  background: rgba(255,255,255,0.82);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 18px 10px;
  letter-spacing: 0.5px;
  line-height: 1.3;
  transition: background 0.3s;
}

@media (max-width: 900px) {
  .slider-container {
    height: 340px;
  }
  .slider-heading {
    font-size: 1.2rem;
    padding: 10px 6px;
  }
}

@media (max-width: 600px) {
  .slider-container {
    height: 300px;
  }
  .slider-heading {
    font-size: 1rem;
    padding: 7px 4px;
  }
}

/* Member News Section */
.member-news-section {
    padding: 3rem 1.5rem;
    background: var(--bg-light);
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 500px));
    gap: 2rem;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
}

.news-table-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    height: auto;
    overflow: visible;
    transition: box-shadow 0.3s ease;
}

.news-table-card:hover {
    box-shadow: var(--shadow-md);
}

.card-header {
    background: var(--bg-light);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.card-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.table-wrapper {
    height: auto;
    overflow: visible;
}


.table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    table-layout: fixed;
}

.table-wrapper th,
.table-wrapper td {
    padding: 0.875rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.4;
}

.table-wrapper td:first-child,
.table-wrapper th:first-child {
    width: 50%;
    color: black;
    text-align: center;
    background: var(--bg-light);
    font-weight: 500;
}

.table-wrapper td:nth-child(2),
.table-wrapper th:nth-child(2) {
    width: 50%;
}

.table-wrapper tr:last-child td {
    border-bottom: none;
}

.btn-view-more {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(255, 105, 180, 0.1);
}

.btn-view-more:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    background: #ff4da6;
}

.no-news {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-style: italic;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin: 1rem auto;
    max-width: 100%;
    box-sizing: border-box;
}

/* Responsive styles */
@media (max-width: 992px) {
    .news-table-card {
        min-width: 280px;
        height: auto;
    }
    
    .table-wrapper td {
        padding: 0.75rem 1.25rem;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-table-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0 0 1.5rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .member-news-section {
        padding: 2rem 1rem;
    }
    
    .news-table-card {
        height: auto;
    }
    
    .table-wrapper td {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .no-news {
        margin: 1rem 0;
        padding: 1.5rem 1rem;
    }
}

/* Animation for card appearance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-table-card {
    animation: fadeInUp 0.5s ease-out forwards;
}

.news-grid > *:nth-child(2) {
    animation-delay: 0.2s;
}

.news-grid > *:nth-child(3) {
    animation-delay: 0.4s;
}

.news-grid > *:nth-child(4) {
    animation-delay: 0.6s;
}

.news-grid > *:nth-child(5) {
    animation-delay: 0.8s;
}


/* Video Section Styles */
.video-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  box-sizing: border-box;
}

.video-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff69b4;
  margin-bottom: 40px;
  font-family: 'Poppins', sans-serif;
}

.video-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(255, 105, 180, 0.15);
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.video-wrapper:hover iframe {
  transform: scale(1.02);
}

/* Responsive Design for Video */
@media (max-width: 1200px) {
  .video-section {
    padding: 50px 20px;
  }
  
  .video-title {
    font-size: 2.2rem;
    margin-bottom: 35px;
  }
  
  .video-container {
    max-width: 1000px;
  }
}

@media (max-width: 900px) {
  .video-section {
    padding: 40px 15px;
  }
  
  .video-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .video-container {
    padding: 0 15px;
  }
}

@media (max-width: 600px) {
  .video-section {
    padding: 30px 10px;
  }
  
  .video-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  
  .video-container {
    padding: 0 10px;
  }
  
  .video-wrapper {
    border-radius: 12px;
  }
  
  .video-wrapper iframe {
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .video-section {
    padding: 25px 8px;
  }
  
  .video-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .video-container {
    padding: 0 8px;
  }
  
  .video-wrapper {
    border-radius: 8px;
  }
  
  .video-wrapper iframe {
    border-radius: 8px;
  }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background-color: var(--white);
    margin: 2% auto;
    max-width: 900px;
    max-height: 90vh;
    border-radius: var(--radius-md);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

.modal-header {
    padding: 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--white);
}

.close-button {
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    padding: 0 10px;
    transition: opacity 0.3s;
}

.close-button:hover {
    opacity: 0.8;
}

.modal-body {
    padding: 20px;
    overflow-y: auto;
    max-height: calc(90vh - 100px);
}


.modal .news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 768px) {
    .modal .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.modal .news-table-card {
    margin: 0;
    box-shadow: none;
    border: 1px solid var(--border-color);
}

/* Animations */
@keyframes modalSlideIn {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


/* TSCT Mission Section */
.tsct-section {
  padding: 10px clamp(15px, 3vw, 30px);
  background: #ffffff;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.tsct-container {
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
}

.tsct-heading {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.3;
  padding: 0 15px;
  text-align: center;
  color: #333;
  position: relative;
  z-index: 1;
}

.tsct-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 50px);
  align-items: stretch;
  padding: 0 clamp(10px, 2vw, 20px);
  position: relative;
  z-index: 1;
}

.tsct-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tsct-card {
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  position: relative;
}

.tsct-card:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Card Color Variants - Clean Design */
.tsct-card-orange {
  border-left: 3px solid #ff9800;
}

.tsct-card-white {
  border-left: 3px solid #0099cc;
}

.tsct-card-green {
  border-left: 3px solid #4caf50;
}

.tsct-card h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
  color: #333;
}

.tsct-card p {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
  color: #666;
}

.tsct-image {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: 100%;
  position: relative;
}

.tsct-img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* TSCT Mission Section Responsive Styles */
@media (max-width: 1200px) {
  .tsct-content {
    gap: 30px;
  }
  
  .tsct-cards {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .tsct-content {
    grid-template-columns: 1fr;
  }

  .tsct-image {
    order: -1;
    margin-bottom: 30px;
  }
  
  .tsct-img {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .tsct-section {
    padding: 10px 15px;
  }

  .tsct-heading {
    margin-bottom: 0;
  }


  .tsct-card {
    padding: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .tsct-section {
    padding: 10px 10px;
  }

  .tsct-heading {
    font-size: 1.5rem;
    margin-bottom: 0;
  }

  .tsct-card h3 {
    font-size: 1.1rem;
  }

  .tsct-card p {
    font-size: 0.9rem;
  }
  
  .tsct-img {
    border-radius: var(--radius-sm);
  }
}

/* CTWS Information Section Styles */
.cts-info-section {
  padding: 80px 20px;
  background: #f8f9fa;
  width: 100%;
  box-sizing: border-box;
}

.cts-info-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cts-info-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cts-info-box {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.cts-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cts-box-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: 'Roboto', sans-serif;
  line-height: 1.3;
}

.cts-box-content {
  font-size: 1rem;
  line-height: 1.6;
  font-family: 'Roboto', sans-serif;
  margin: 0;
}

/* Box Color Variants - All boxes have same styling */
.cts-box-orange,
.cts-box-white,
.cts-box-green {
  background: #ffffff;
  color: #0a2233;
  border: 2px solid #0099cc;
}

/* Responsive Design for CTWS Info Section */
@media (max-width: 768px) {
  .cts-info-section {
    padding: 60px 15px;
  }
  
  .cts-info-grid {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .cts-info-box {
    min-width: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .cts-box-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .cts-box-content {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .cts-info-section {
    padding: 40px 10px;
  }
  
  .cts-info-box {
    padding: 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .cts-box-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .cts-box-content {
    font-size: 0.9rem;
  }
}

/* जहाँ सहयोग वहीं सहारा Section Styles */
.sahayog-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #e6f3ff 0%, #f0f8ff 100%);
  box-sizing: border-box;
}
.sahayog-container {
  max-width: 1000px;
  margin: 0 auto;
}
.sahayog-content {
  text-align: center;
}
.sahayog-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0a2233;
  margin-bottom: 30px;
  font-family: 'Roboto', sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 153, 204, 0.1);
}
.sahayog-description {
  text-align: justify;
  max-width: 800px;
  margin: 0 auto;
}
.sahayog-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #2c3e50;
  font-family: 'Roboto', sans-serif;
}
.sahayog-description strong {
  color: #0099cc;
  font-weight: 700;
}
.sahayog-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}
.value-item {
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 2px 6px rgba(0, 153, 204, 0.08);
  border: 2px solid #e6f3ff;
  transition: all 0.3s ease;
}
.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 2px 8px rgba(0, 153, 204, 0.08);
  border-color: #0099cc;
}
.value-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0a2233;
  margin-bottom: 12px;
  font-family: 'Roboto', sans-serif;
}
.value-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

/* Responsive Design for Sahayog Section */
@media (max-width: 768px) {
  .sahayog-section {
    padding: 60px 15px;
  }
  .sahayog-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  .sahayog-description p {
    font-size: 1rem;
    margin-bottom: 18px;
  }
  .sahayog-values {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  .value-item {
    padding: 20px;
  }
  .value-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .value-item p {
    font-size: 0.95rem;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .sahayog-section {
    padding: 40px 10px;
  }
  .sahayog-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .sahayog-description p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  .sahayog-values {
    gap: 15px;
    margin-top: 25px;
  }
  .value-item {
    padding: 18px;
  }
  .value-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .value-item p {
    font-size: 0.9rem;
  }
}


.bottom-text {
  color: #ff69b4;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.2rem auto 1.5rem auto;
  max-width: 700px;
  line-height: 1.5;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (max-width: 700px) {
  .bottom-text {
    font-size: .8rem;
    margin: 0.8rem 1rem 1.2rem 1rem;
  }
}

/* Recent Donations Table Section */
.donations-table-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f8fafa 0%, #e8f4f8 100%);
  margin: 2rem 0;
}

.donations-table-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.donations-table-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.donations-table-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
  background: rgb(0, 183, 255);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: underline;
  text-decoration-color: #06c9ff;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 6px;
}

.donations-table-subtitle {
  font-size: 1.1rem;
  color: #7f8c8d;
}

.donations-header-actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: white;
  color: rgb(0, 0, 0);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(42, 128, 185, 0.1);
  position: relative;
  overflow: hidden;
}

.view-all-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.view-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 8px rgba(135, 206, 235, 0.1);
  background: #ffffff;
  border: 2px solid #87CEEB;
  color: #000;
}

.view-all-btn:hover::before {
  display: none;
}

.view-all-btn span {
  position: relative;
  z-index: 2;
}

.view-all-btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.view-all-btn:hover i {
  transform: translateX(5px);
}

.donations-table-wrapper {
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(42, 128, 185, 0.06);
  overflow: hidden;
  border: 1px solid #e8f4f8;
}

.donations-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.donations-table thead {
  background: linear-gradient(135deg, #f8fafa, #e8f4f8);
}

.donations-table th {
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-weight: 600;
  color: #2c3e50;
  border-bottom: 2px solid #e8f4f8;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.donations-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid #f1f5f6;
  vertical-align: top;
  transition: all 0.3s ease;
}

.donations-table tbody tr {
  transition: all 0.3s ease;
  background: white;
}

.donations-table tbody tr:hover {
  background: linear-gradient(90deg, #f8fffe, #f0f8ff);
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(42, 128, 185, 0.08);
}

.donations-table tbody tr:last-child td {
  border-bottom: none;
}

/* Table Cell Styling */
.receipt-id-cell strong {
  color: #2A80B9;
  font-size: .8rem;
  font-weight: 700;
}

.receipt-id-cell small {
  color: #7f8c8d;
  font-size: 0.8rem;
  display: block;
  margin-top: 2px;
}

.member-name-cell strong {
  color: #2c3e50;
  font-size: .9rem;
  font-weight: 600;
}

.workplace-cell {
  color: #34495e;
  font-weight: 500;
}

.workplace-cell small {
  color: #7f8c8d;
  font-size: 0.85rem;
  display: block;
  margin-top: 2px;
}

.district-cell {
  color: #34495e;
  font-weight: 500;
}

.district-cell small {
  color: #7f8c8d;
  font-size: 0.85rem;
  display: block;
  margin-top: 2px;
}

.amount-cell strong {
  color: #27ae60;
  font-size: .9rem;
  font-weight: 700;
}

.date-cell {
  color: #7f8c8d;
  font-weight: 500;
}

/* No Donations State */
.no-donations {
  text-align: center;
  padding: 4rem 2rem;
  color: #7f8c8d;
}

.no-donations i {
  font-size: 3.5rem;
  color: #2A80B9;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.no-donations h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.no-donations p {
  font-size: 1rem;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .donations-table-container {
    padding: 0 1rem;
  }
  
  .donations-table th,
  .donations-table td {
    padding: 1rem 1rem;
  }
}

@media (max-width: 768px) {
  .donations-table-section {
    padding: 2rem 0;
  }
  
  .donations-table-title {
    font-size: 1.8rem;
  }
  
  .donations-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
  }
  
  .donations-table {
    min-width: 600px;
  }
  
  .donations-table th,
  .donations-table td {
    padding: 0.8rem 0.75rem;
    font-size: 0.85rem;
  }
  
  .view-all-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .donations-header-actions {
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .donations-table-container {
    padding: 0 0.5rem;
  }
  
  .donations-table {
    min-width: 500px;
  }
  
  .donations-table th,
  .donations-table td {
    padding: 0.6rem 0.5rem;
    font-size: 0.8rem;
  }
  
  .donations-table-title {
    font-size: 1.5rem;
  }
  
  .donations-table-subtitle {
    font-size: 1rem;
  }

  .view-all-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    gap: 0.5rem;
  }
  
  .donations-header-actions {
    margin-top: 0.8rem;
  }
}

/* Admin Statistics Section */
.admin-stats-section {
  background: transparent;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #87CEEB;
  border-bottom: 1px solid #87CEEB;
  box-shadow: 0 0 8px rgba(135, 206, 235, 0.1), 
              inset 0 0 8px rgba(135, 206, 235, 0.05);
}

.admin-stats-section::before {
  display: none;
}

.admin-stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 1;
}

.admin-stats-header {
  text-align: center;
  margin-bottom: 0;
  padding: 1.5rem 0 1rem 0;
}

.admin-stats-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin: 0;
  text-shadow: none;
}

.admin-stats-subtitle {
  font-size: 1.1rem;
  color: #000;
  margin: 0;
  font-weight: 500;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 0;
  padding: 1.5rem 0;
}

.admin-stat-card {
  background: transparent;
  border-radius: 0;
  padding: 1rem;
  padding-top: 25px;
  text-align: center;
  box-shadow: none;
  border: 2px solid #87CEEB;
  transition: none;
  position: relative;
  overflow: hidden;
}

.admin-stat-card::before {
  display: none;
}

.admin-stat-card:hover {
  transform: none;
  box-shadow: none;
}

.admin-stat-card:hover::before {
  display: none;
}

.admin-stat-header {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

.admin-stat-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.5rem;
  color: #000;
  transition: none;
  background: transparent;
  border: none;
  position: relative;
  padding-bottom: 15px;
}

/* Circle decoration for all icons (black color) */
.admin-stat-icon.primary::after,
.admin-stat-icon.success::after,
.admin-stat-icon.info::after,
.admin-stat-icon.warning::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid #000;
  background: transparent;
}

.admin-stat-icon.primary {
  background: transparent;
  border: none;
}

.admin-stat-icon.success {
  background: transparent;
  border: none;
}

.admin-stat-icon.warning {
  background: transparent;
  border: none;
}

.admin-stat-icon.info {
  background: transparent;
  border: none;
}

.admin-stat-card:hover .admin-stat-icon {
  transform: none;
}

.admin-stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
  line-height: 1;
}
/* Smaller size for Lakhs amount */
.admin-stat-value.lakhs-value {
  font-size: 2rem;
  font-weight: 700;
}

.admin-stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.admin-stats-footer {
    text-align: center;
  margin-top: 0;
  padding: 1rem 0;
}

.stats-update-info {
  font-size: 0.9rem;
  color: #000;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.stats-update-info i {
  animation: spin 2s linear infinite;
}


/* Responsive Design for Admin Stats */

/* Tablet to Desktop transition: 4 columns from 769px */
@media (min-width: 769px) and (max-width: 1023px) {
  .admin-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }
}

/* Desktop: 4 columns at 1024px and above */
@media (min-width: 1024px) and (max-width: 1439px) {
  .admin-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

/* Large Desktop: 4 columns at 1440px and above */
@media (min-width: 1440px) {
  .admin-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

/* Tablet and Mobile: Keep 2 columns */
@media (max-width: 768px) {
  .admin-stats-section {
    padding: 0;
  }
  
  .admin-stats-container {
    padding: 0;
  }
  
  .admin-stats-header {
    padding: 1rem 0 0.75rem 0;
  }
  
  .admin-stats-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .admin-stats-subtitle {
    font-size: 0.85rem;
  }
  
  .admin-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 1rem 0;
  }
  
  .admin-stat-card {
    padding: 1.8rem 0.75rem;
  }
  
  .admin-stat-header {
    margin-bottom: 0.75rem;
    padding-bottom: 0.25rem;
  }
  
  .admin-stat-icon {
    width: auto;
    height: auto;
    font-size: 1.1rem;
    padding-bottom: 10px;
    margin-bottom: 0.25rem;
  }
  
  .admin-stat-icon.primary::after,
  .admin-stat-icon.success::after,
  .admin-stat-icon.info::after,
  .admin-stat-icon.warning::after {
    width: 40px;
    height: 40px;
    border-width: 2px;
  }
  
  .admin-stat-value {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    margin-top: 0.25rem;
  }
  .admin-stat-value.lakhs-value {
    font-size: 1.2rem;
  }
  
  .admin-stat-label {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
  }
}

@media (max-width: 480px) {
  .admin-stats-header {
    padding: 0.75rem 0 0.5rem 0;
  }
  
  .admin-stats-title {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }
  
  .admin-stats-subtitle {
    font-size: 0.75rem;
  }
  
  .admin-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0.75rem 0;
  }
  
  .admin-stat-card {
    padding: 2rem 0.5rem;
  }
  
  .admin-stat-header {
    margin-bottom: 0.5rem;
    padding-bottom: 0.25rem;
  }
  
  .admin-stat-icon {
    font-size: 1rem;
    padding-bottom: 10px;
    margin-bottom: 0.25rem;
  }
  
  .admin-stat-icon.primary::after,
  .admin-stat-icon.success::after,
  .admin-stat-icon.info::after,
  .admin-stat-icon.warning::after {
    width: 35px;
    height: 35px;
    border-width: 2px;
  }
  
  .admin-stat-value {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
    margin-top: 0.2rem;
  }
  .admin-stat-value.lakhs-value {
    font-size: 1.05rem;
  }
  
  .admin-stat-label {
    font-size: 0.65rem;
    margin-bottom: 0.2rem;
  }
}

/* Multiple Deceased Members Responsive Layout */
.deceased-member-container .news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .deceased-member-container .news-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .deceased-member-container .news-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
}

/* Sahyog Highlight Styles */
/* QR Scanner Button Styles */
.sahyog-qr-button-container {
  text-align: center;
  margin: 1rem 0;
}

.sahyog-qr-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #87CEEB;
  color: #000;
  border: 2px solid #000;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.sahyog-qr-btn:hover {
  background: #6bb6d6;
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.sahyog-qr-btn i {
  font-size: 1.1rem;
}

/* QR Scanner Modal Styles */
.qr-scanner-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.qr-scanner-modal-content {
  background: white;
  border-radius: 12px;
  width: auto;
  max-width: 320px;
  padding: 1.5rem;
  padding-top: 2.5rem;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  animation: slideUp 0.3s ease;
}

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

.qr-scanner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 2px solid #e0e0e0;
}

.qr-scanner-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
}

.qr-scanner-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #666;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
  z-index: 10;
}

.qr-scanner-close:hover {
  color: #000;
}

.qr-scanner-body {
  padding: 1.5rem;
}

.qr-code-display-container {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.qr-code-image-wrapper {
  text-align: center;
  width: 100%;
}

.qr-code-image {
  max-width: 100%;
  width: 250px;
  height: 250px;
  object-fit: contain;
  border: 2px solid #87CEEB;
  border-radius: 8px;
  padding: 0.75rem;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 0;
  display: block;
}

.qr-instruction {
  color: #333;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.qr-loading {
  text-align: center;
  padding: 2rem;
  color: #3498db;
  font-size: 0.9rem;
}

.qr-loading i {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.qr-error {
  text-align: center;
  padding: 1.5rem;
}

.qr-code-file-wrapper {
  text-align: center;
  padding: 2rem;
}

.qr-scanner-status {
  margin-bottom: 1rem;
  text-align: center;
  min-height: 30px;
}

.qr-scanner-status p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.qr-alert-result {
  margin-top: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.qr-alert-info {
  margin-top: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.qr-alert-content h4 {
  margin: 0 0 0.75rem 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
}

.qr-alert-content p {
  margin: 0.5rem 0;
  color: #333;
  line-height: 1.6;
}

.qr-alert-image {
  margin-top: 1rem;
  text-align: center;
}

.qr-alert-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.qr-alert-file {
  margin-top: 1rem;
  text-align: center;
}

.qr-alert-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #87CEEB;
  color: #000;
  border: 2px solid #000;
  border-radius: 0;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.qr-alert-download-btn:hover {
  background: #6bb6d6;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .qr-scanner-modal-content {
    max-width: 280px;
    padding: 1.25rem;
    padding-top: 2.25rem;
  }
  
  .qr-code-image {
    width: 220px;
    height: 220px;
  }
  
  .sahyog-qr-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .sahyog-number-btn {
    padding: 0.35rem 0.7rem;
    font-size: 0.75rem;
    border-radius: 4px;
    min-width: 45px;
    gap: 0.3rem;
  }
  
  .sahyog-number-btn i {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .sahyog-number-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.65rem;
    border-radius: 3px;
    min-width: 35px;
    letter-spacing: 0.1px;
    gap: 0.25rem;
    border-width: 1px;
  }
  
  .sahyog-number-btn:hover {
    transform: translateX(1px);
  }
  
  .sahyog-number-btn i {
    font-size: 0.55rem;
  }
}

@media (max-width: 360px) {
  .sahyog-number-btn {
    padding: 0.2rem 0.4rem;
    font-size: 0.6rem;
    border-radius: 3px;
    min-width: 30px;
    gap: 0.2rem;
  }
  
  .sahyog-number-btn i {
    font-size: 0.5rem;
  }
}

/* Sahyog Number Button Styles - Minimal Clean Design */
.sahyog-number-btn {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
    color: #0277bd;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: none;
    border: 1.5px solid #81d4fa;
    cursor: pointer;
    text-align: left;
    white-space: nowrap;
    position: relative;
    letter-spacing: 0.2px;
    min-width: 60px;
    gap: 0.5rem;
}

.sahyog-number-btn:hover {
    background: transparent;
    color: #01579b;
    border-color: #4fc3f7;
    transform: translateX(3px);
    text-decoration: none;
}

.sahyog-number-btn:active {
    transform: translateX(1px);
}

.sahyog-number-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(3, 169, 244, 0.15);
}

.sahyog-number-btn i {
    color: #0288d1;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    order: -1;
}

.sahyog-number-btn:hover i {
    color: #01579b;
    transform: translateX(-2px);
}

.sahyog-highlight {
    color: #dc2626;
    font-weight: 700;
    text-align: center;
    font-size: 2rem;
    margin: 6px 0 8px;
}

/* Info Text Highlight Styles */
.info-text-highlight {
    max-width: 820px;
    margin: 6px auto 14px;
    padding: 12px 16px;
    background: #fff7fb;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    border-radius: 12px;
    text-align: center;
    color: #374151;
    line-height: 1.6;
}

/* Latest Updates Table Text Shadow */
.member-info-table th.info-header,
.member-info-table td.info-value,
.nominee-info-table th.info-header,
.nominee-info-table td.info-value {
    text-shadow: 1px 1px 3px rgba(255, 0, 0, 0.4);
}

/* Centered Extension Message Card - Homepage */
.sahyog-extension-card {
  width: 90%;
  max-width: 90%;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

/* Centered Extension Message Card - Tablet (768px) */
@media (max-width: 768px) {
  .sahyog-extension-card {
    width: 88%;
    max-width: 88%;
    padding: 0.75rem !important;
    font-size: 0.8rem !important;
  }
  .sahyog-extension-card span {
    font-size: 0.8rem;
  }
}

/* Centered Extension Message Card - Mobile (480px) */
@media (max-width: 480px) {
  .sahyog-extension-card {
    width: 85%;
    max-width: 85%;
    padding: 0.625rem !important;
    margin: 0.75rem auto !important;
    font-size: 0.75rem !important;
  }
  .sahyog-extension-card span {
    font-size: 0.75rem;
  }
  .sahyog-extension-card i {
    font-size: 0.65rem !important;
  }
}

/* Centered Button Container - for download actions */
.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1rem auto;
  padding: 1rem 0;
}

.button-container-left {
  justify-content: flex-start;
}

.button-container-right {
  justify-content: flex-end;
}

.button-container-space-between {
  justify-content: space-between;
}
