@charset "utf-8";

/* Page & Layout Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

/* body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333333;
  background-color: #f8fafc;
  margin: 0;
  padding: 0;
  line-height: 1.5;
} */

body{padding-top:80px;font-size:18px;color:#34495e;background:#f5f5f5}
body h1,body h2,body h3,body h4,body .created{font-family:"Fjalla One",sans-serif;font-weight:normal}
body h5,body h6{margin:0}body h3,body h4{margin-top:0}


/* Page Container 
.dsc-page-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px;
}  */

.dsc-page-container {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
  padding: 16px;
}

/* 3-Column Grid */
.dsc-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.dsc-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Column Headers */
.column-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}

.column-header h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: #c2410c;
}

.column-header:first-child h2 {
  color: #dc2626;
}

.portal-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #0284c7;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}

.portal-link:hover {
  text-decoration: underline;
}

/* Card Styling Matching Screenshot */
.doc-group {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.doc-group-title {
  padding: 8px 12px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
}

/* Color Themes Matching UI Image */
.title-blue {
  background-color: #0284c7;
}

.title-orange {
  background-color: #f97316;
}

.title-dark {
  background-color: #1e293b;
}

/* Share Button inside Header */
.btn-whatsapp {
  background-color: #10b981;
  color: #ffffff;
  border: none;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-whatsapp:hover {
  background-color: #059669;
}

/* List Formatting */
.doc-list {
  margin: 0;
  padding: 10px 10px 10px 28px;
}

.doc-list li {
  padding: 3px 0;
  font-size: 0.85rem;
  color: #334155;
}

.doc-note {
  font-size: 0.78rem;
  color: #2563eb;
  background-color: #eff6ff;
  border-radius: 4px;
  padding: 6px 8px;
  margin-top: 4px;
  line-height: 1.4;
}

/* Action Buttons Grid & Items */
.action-btn {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  color: #1e293b;
  border: 1px solid #cbd5e1;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.action-btn:hover {
  background-color: #f8fafc;
}

.btn-green-fill {
  background-color: #10b981;
  color: #ffffff;
  border-color: #10b981;
  justify-content: center;
}

.btn-green-fill:hover {
  background-color: #059669;
  color: #ffffff;
}

.btn-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.badge-num {
  background-color: #f1f5f9;
  color: #475569;
  border: 1px solid #cbd5e1;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 50%;
  margin-right: 8px;
}

/* =======================================
   Offcanvas Drawer Styles
   ======================================= */

.gtech-offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 99998;
  display: none;
}

.gtech-bank-modal.gtech-offcanvas {
  position: fixed;
  top: 0;
  right: -390px;
  width: 350px;
  max-width: 100vw;
  height: 100%;
  background-color: #f8fafc;
  box-shadow: -8px 0 24px rgba(0,0,0,0.2);
  z-index: 99999;
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.gtech-bank-modal.gtech-offcanvas.open {
  right: 0 !important;
}

.gtech-bank-modal .gtech-header {
  background-color: #004c8f;
  color: #ffffff;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gtech-bank-modal .gtech-logo {
  width: 26px;
  height: 26px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 4px;
  padding: 2px;
}

.gtech-bank-modal .gtech-close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.gtech-bank-modal .gtech-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 46px);
  overflow-y: auto;
}

/* Left-Aligned Copy Labels */
.gtech-bank-modal .gtech-copy-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
  display: block;
  margin-bottom: 3px;
  text-align: left; /* Explicitly set to left */
}

.gtech-bank-modal .gtech-copy-box {
  background: #ffffff;
  border: 1px dashed #cbd5e1;
  border-radius: 4px;
  padding: 4px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gtech-bank-modal .gtech-btn-copy {
  background: transparent;
  border: 1px solid #0284c7;
  color: #0284c7;
  font-size: 0.75rem;
  border-radius: 4px;
  padding: 2px 8px;
  cursor: pointer;
}

.gtech-bank-modal .gtech-btn-copy:hover {
  background: #0284c7;
  color: #ffffff;
}

.gtech-bank-modal .gtech-qr-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  margin: 4px 0;
}

.gtech-bank-modal .gtech-qr-card img {
  max-width: 120px !important;
  max-height: 120px !important;
  height: auto;
}

.gtech-bank-modal .gtech-action-container {
  display: flex;
  gap: 8px;
}

.gtech-bank-modal .gtech-btn-upi {
  flex: 3;
  background: #0284c7;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 8px 6px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.82rem;
}

.gtech-bank-modal .gtech-btn-wa {
  flex: 1;
  background: #10b981;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 8px 6px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.gtech-toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1e293b;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  display: none;
  z-index: 100000;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .dsc-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .dsc-row {
    grid-template-columns: 1fr;
  }
}