/* =============================================
   TAXPROPATH USER DASHBOARD - PREMIUM DARK THEME
   Color Palette: Green #16a34a | Blue #0066cc | Dark #0f172a
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- Dashboard Section Background ---- */
.gray-light-bg,
.about-area.four.section-padding.gray-light-bg {
  background: #0f172a !important;
  min-height: 80vh;
}

/* ---- Page Banner (reuse global style) ---- */
.page-banner-area {
  background: #0f172a;
  padding: 90px 0 40px;
}

/* =============================================
   SIDEBAR / DASHBOARD CARD
   ============================================= */
.dashboard {
  margin: 0 0 24px 0;
  padding: 28px 16px 20px;
  width: 100%;
  float: left;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(22, 163, 74, 0.25);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  text-align: center;
  min-height: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.3s ease;
}

.dashboard:hover {
  box-shadow: 0 12px 40px rgba(22, 163, 74, 0.15);
}

/* Avatar */
.dashboard img {
  margin-top: 0;
  padding: 4px;
  border: 3px solid #16a34a;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(22, 163, 74, 0.3);
}

/* User Name */
.dashboard h3 {
  margin-top: 14px;
  padding: 0;
  font-size: 17px;
  font-weight: 600;
  color: #e2e8f0;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}

/* =============================================
   SIDEBAR NAV MENU
   ============================================= */
.side-bar {
  width: 100%;
  margin-top: 10px;
  padding: 0;
  background: transparent;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.side-bar ul {
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
}

.side-bar ul li {
  margin: 4px 0;
  padding: 0;
  border-bottom: none;
  border-radius: 10px;
  overflow: hidden;
  transition: background 0.2s ease;
}

.side-bar ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 12px 16px;
  text-decoration: none;
  color: #94a3b8;
  line-height: 1.4;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.side-bar ul li a:hover {
  background: rgba(22, 163, 74, 0.12) !important;
  color: #4ade80 !important;
}

.side-bar ul li a i {
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #16a34a;
  width: 20px;
  text-align: center;
  transition: color 0.2s ease;
}

.side-bar ul li a:hover i {
  color: #4ade80;
}

/* Active link */
.side-bar ul li.active a,
.side-bar ul li a.active {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.2), rgba(0, 102, 204, 0.15));
  color: #4ade80 !important;
  border-left: 3px solid #16a34a;
}

/* =============================================
   MAIN CONTENT CARD
   ============================================= */
.main-content {
  width: 100%;
  padding: 0;
  margin: 0;
  float: left;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  height: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

/* Section Heading Row */
.main-content-right {
  width: 100%;
  padding: 20px 28px 14px;
  margin: 0;
  float: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(90deg, rgba(22, 163, 74, 0.08), rgba(0, 102, 204, 0.06));
}

.main-content-right h3 {
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  margin: 0;
  color: #e2e8f0;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}

/* =============================================
   PROFILE INFO ROWS
   ============================================= */
.main-side {
  width: 100%;
  padding: 14px 28px;
  float: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s ease;
}

.main-side:hover {
  background: rgba(22, 163, 74, 0.05);
}

.left-side h6,
.right-side h6 {
  font-size: 13px;
  font-weight: 500;
  padding: 0;
  margin: 0;
  color: #94a3b8;
  text-align: left;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.right-side h6 {
  color: #e2e8f0;
  font-weight: 500;
}

.left-side i {
  color: #16a34a;
  font-size: 13px;
  padding: 0;
  margin-right: 4px;
}

/* =============================================
   EDIT PROFILE BUTTON
   ============================================= */
a.secondary-solid-btn.border-radius {
  display: inline-block !important;
  margin: 16px 28px 20px;
  padding: 10px 28px !important;
  background: linear-gradient(135deg, #16a34a, #0066cc) !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif;
  font-size: 13px !important;
  font-weight: 600 !important;
  border: none !important;
  border-radius: 10px !important;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
  float: right;
  letter-spacing: 0.4px;
}

a.secondary-solid-btn.border-radius:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.4);
}

/* =============================================
   ORDER LIST TABLE
   ============================================= */
.sub-heading {
  font-size: 18px;
  font-weight: 600;
  color: #e2e8f0;
  font-family: 'Inter', sans-serif;
  padding: 20px 28px 14px;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

#no-more-tables {
  padding: 0 8px 20px;
}

table.table,
table.table-striped {
  background: transparent !important;
  color: #cbd5e1 !important;
  border-collapse: separate;
  border-spacing: 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  width: 100%;
  margin: 0;
}

table.table thead tr th {
  background: rgba(22, 163, 74, 0.12) !important;
  color: #4ade80 !important;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 13px 16px !important;
  border-bottom: 1px solid rgba(22, 163, 74, 0.25) !important;
  border-top: none !important;
}

table.table tbody tr {
  transition: background 0.2s ease;
}

table.table tbody tr:hover {
  background: rgba(22, 163, 74, 0.06) !important;
}

table.table tbody tr td {
  padding: 12px 16px !important;
  color: #cbd5e1 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  vertical-align: middle;
}

/* Striped rows */
table.table-striped tbody tr:nth-of-type(odd) {
  background: rgba(255, 255, 255, 0.02) !important;
}

td, th {
  padding: 13px !important;
}

/* =============================================
   CART / CHECKOUT SECTION
   ============================================= */
.shopping-cart .table th {
  background: rgba(22, 163, 74, 0.12) !important;
  color: #4ade80 !important;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.shopping-cart .table td {
  color: #cbd5e1 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  vertical-align: middle;
}

.shopping-cart .remove-from-cart {
  color: #f87171;
  transition: color 0.2s;
}

.shopping-cart .remove-from-cart:hover {
  color: #ef4444;
}

/* Cart footer */
.shopping-cart-footer {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 8px;
}

.shopping-cart-footer .text-medium {
  color: #94a3b8;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

.shopping-cart-footer #subtotal,
.shopping-cart-footer #couponval {
  color: #4ade80;
  font-weight: 600;
}

/* Coupon input */
input#coupon_code {
  background: rgba(15, 23, 42, 0.8) !important;
  border: 1px solid rgba(22, 163, 74, 0.3) !important;
  color: #e2e8f0 !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
  font-family: 'Inter', sans-serif;
  font-size: 13px !important;
  transition: border-color 0.2s ease;
}

input#coupon_code:focus {
  border-color: #16a34a !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15) !important;
}

input#coupon_code::placeholder {
  color: #64748b;
}

/* Buttons (Apply / Checkout) */
.btn.btn-success.button_coupan,
a.btn.btn-success.button_coupan {
  background: linear-gradient(135deg, #16a34a, #0066cc) !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 10px 22px !important;
  font-family: 'Inter', sans-serif;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #fff !important;
  letter-spacing: 0.4px;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
  text-decoration: none;
}

.btn.btn-success.button_coupan:hover,
a.btn.btn-success.button_coupan:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.4);
}

/* Product name in cart */
.product-item h5 {
  color: #e2e8f0 !important;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

/* Qty select */
select#qty,
.count-input select {
  background: rgba(15, 23, 42, 0.8) !important;
  border: 1px solid rgba(22, 163, 74, 0.3) !important;
  color: #e2e8f0 !important;
  border-radius: 6px !important;
  padding: 6px 10px !important;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  transition: border-color 0.2s;
}

select#qty:focus,
.count-input select:focus {
  border-color: #16a34a !important;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15) !important;
  outline: none !important;
}

/* =============================================
   PERSONAL PROFILE (Edit Form)
   ============================================= */
.personal-info {
  width: 100%;
  padding: 28px;
  margin-top: 10px;
  float: left;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 12px;
}

.personal-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px;
  padding: 0 0 12px;
  color: #e2e8f0;
  font-family: 'Inter', sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.personal-detail {
  width: 100%;
  margin-top: 20px;
  padding: 0 28px 28px;
  float: left;
}

.personal-detail h3 {
  font-size: 20px;
  margin: 0 0 20px;
  padding: 0 0 14px;
  float: left;
  width: 100%;
  text-align: left;
  color: #e2e8f0;
  text-transform: capitalize;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.personal-detail label {
  width: 100%;
  margin: 0 0 14px;
  padding: 0;
  float: left;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: #94a3b8;
}

.personal-detail label span {
  width: 200px;
  margin: 0;
  padding: 0;
  float: left;
  font-weight: 600;
  color: #64748b;
}

.personal-detail label span i {
  margin-right: 8px;
  color: #16a34a;
}

.personal-detail label input[type="text"],
.personal-detail label input[type="password"],
.personal-detail label select,
.personal-detail label textarea {
  border: 1px solid rgba(22, 163, 74, 0.25) !important;
  background: rgba(15, 23, 42, 0.6) !important;
  padding: 8px 14px !important;
  margin-top: -4px;
  font-size: 13px;
  color: #e2e8f0 !important;
  width: 55%;
  font-family: 'Inter', sans-serif;
  height: 38px;
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.personal-detail label input[type="text"]:focus,
.personal-detail label input[type="password"]:focus,
.personal-detail label select:focus,
.personal-detail label textarea:focus {
  border-color: #16a34a !important;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15) !important;
  outline: none !important;
}

.personal-detail label a {
  margin: 0;
  padding: 9px 22px;
  background: linear-gradient(135deg, #16a34a, #0066cc);
  float: left;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.personal-detail label a:hover {
  opacity: 0.9;
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.4);
}

/* =============================================
   FORM AREA (Edit Profile)
   ============================================= */
.form {
  margin-top: 20px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
  color: #94a3b8;
}

.form input {
  text-align: left;
  background: rgba(15, 23, 42, 0.6) !important;
  border: 1px solid rgba(22, 163, 74, 0.25) !important;
  color: #e2e8f0 !important;
  border-radius: 8px;
  padding: 8px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form input:focus {
  border-color: #16a34a !important;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15) !important;
  outline: none !important;
}

.form a {
  font-size: 14px;
  margin-right: 0;
  color: #4ade80;
  font-family: 'Inter', sans-serif;
}

/* =============================================
   SUBMIT BUTTON
   ============================================= */
.submit {
  padding: 12px 28px;
  margin: 20px 28px 0;
  float: left;
  text-align: center;
  background: linear-gradient(135deg, #16a34a, #0066cc);
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
  transition: opacity 0.2s, box-shadow 0.2s, transform 0.2s;
  width: calc(100% - 56px);
}

.submit:hover {
  opacity: 0.9;
  box-shadow: 0 8px 22px rgba(22, 163, 74, 0.4);
  transform: translateY(-1px);
}

.submit a {
  color: #fff;
  padding: 0;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.4px;
}

/* =============================================
   MISC UTILITIES
   ============================================= */
.info {
  margin-top: 30px;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: #94a3b8;
}

.btn-info {
  border-radius: 8px;
  margin-top: -6px;
  background: rgba(0, 102, 204, 0.2) !important;
  border-color: rgba(0, 102, 204, 0.4) !important;
  color: #93c5fd !important;
  font-family: 'Inter', sans-serif;
  font-size: 13px !important;
}

.btn-danger {
  background: linear-gradient(135deg, #16a34a, #0066cc) !important;
  border: none !important;
  padding: 8px 16px !important;
  font-size: 12px !important;
  font-family: 'Inter', sans-serif;
  border-radius: 6px !important;
}

.razorpay-payment-button {
  float: right;
}

.pass {
  min-height: auto !important;
}

.pt-50 {
  padding: 50px 0;
}

.card-title {
  font-size: 16px;
  color: #e2e8f0;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.video-promo-content {
  color: #e2e8f0;
}