/* Root Variables */
:root {
    --blue: #007bff;
    --white: #ffffff;
    --orange: #ff851b;
    --dark: #343a40;
    --light-gray: #adb5bd;
    --border-gray: #ced4da;
    --hover-blue: #0056b3;
    --hover-orange: #e76f00;
    --shadow: rgba(0,0,0,0.1);
    --awra-topbar-height: 58px;
    --awra-topbar-gradient: linear-gradient(160deg, #0f172a, #111827 55%, #1f2937 100%);
    --auth-left-portion: 30%;
    --auth-right-portion: 70%;
    --spacing:.25rem
}

.custom-bg-orange {
    background-color: var(--orange);
}
.custom-bg-orange-light {
    background-color: rgba(255, 133, 27, 0.1); /* soft tint */
}
.custom-bg-orange-hover:hover {
    background-color: var(--hover-orange);
    color: var(--white);
}


/*
   Brandon Grotesque Fonts - Placed in /fonts/brandon/
*/
/* Thin */
@font-face {
    font-family: 'HvDTrial Brandon Grotesque';
    src: url('/fonts/brandon/HvDTrial_BrandonGrotesque-Thin.woff2') format('woff2'),
         url('/fonts/brandon/HvDTrial_BrandonGrotesque-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'HvDTrial Brandon Grotesque';
    src: url('/fonts/brandon/HvDTrial_BrandonGrotesque-ThinItalic.woff2') format('woff2'),
         url('/fonts/brandon/HvDTrial_BrandonGrotesque-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
  }

  /* Light */
  @font-face {
    font-family: 'HvDTrial Brandon Grotesque';
    src: url('/fonts/brandon/HvDTrial_BrandonGrotesque-Light.woff2') format('woff2'),
         url('/fonts/brandon/HvDTrial_BrandonGrotesque-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'HvDTrial Brandon Grotesque';
    src: url('/fonts/brandon/HvDTrial_BrandonGrotesque-LightItalic.woff2') format('woff2'),
         url('/fonts/brandon/HvDTrial_BrandonGrotesque-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
  }

  /* Regular */
  @font-face {
    font-family: 'HvDTrial Brandon Grotesque';
    src: url('/fonts/brandon/HvDTrial_BrandonGrotesque-Regular.woff2') format('woff2'),
         url('/fonts/brandon/HvDTrial_BrandonGrotesque-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'HvDTrial Brandon Grotesque';
    src: url('/fonts/brandon/HvDTrial_BrandonGrotesque-RegularItalic.woff2') format('woff2'),
         url('/fonts/brandon/HvDTrial_BrandonGrotesque-RegularItalic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
  }

  /* Medium */
  @font-face {
    font-family: 'HvDTrial Brandon Grotesque';
    src: url('/fonts/brandon/HvDTrial_BrandonGrotesque-Medium.woff2') format('woff2'),
         url('/fonts/brandon/HvDTrial_BrandonGrotesque-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'HvDTrial Brandon Grotesque';
    src: url('/fonts/brandon/HvDTrial_BrandonGrotesque-MediumItalic.woff2') format('woff2'),
         url('/fonts/brandon/HvDTrial_BrandonGrotesque-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
  }

  /* Bold */
  @font-face {
    font-family: 'HvDTrial Brandon Grotesque';
    src: url('/fonts/brandon/HvDTrial_BrandonGrotesque-Bold.woff2') format('woff2'),
         url('/fonts/brandon/HvDTrial_BrandonGrotesque-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'HvDTrial Brandon Grotesque';
    src: url('/fonts/brandon/HvDTrial_BrandonGrotesque-BoldItalic.woff2') format('woff2'),
         url('/fonts/brandon/HvDTrial_BrandonGrotesque-BoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
  }

  /* Black */
@font-face {
    font-family: 'HvDTrial Brandon Grotesque';
    src: url('/fonts/brandon/HvDTrial_BrandonGrotesque-Black.woff2') format('woff2'),
         url('/fonts/brandon/HvDTrial_BrandonGrotesque-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HvDTrial Brandon Grotesque';
    src: url('/fonts/brandon/HvDTrial_BrandonGrotesque-BlackItalic.woff2') format('woff2'),
         url('/fonts/brandon/HvDTrial_BrandonGrotesque-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

/* Global Styles */
body {
    /* font-family: 'HvDTrial Brandon Grotesque', sans-serif !important; */
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: auto;
    color: #333;
    /* background-image: url('/images/bg2.png'); */
    background-size: 250vh 900vh;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh; /* Full viewport height */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Header Styles */
header {
    /* position: sticky; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px; /* Stable fixed height */
    background: var(--awra-topbar-gradient);
    color: var(--white);
    padding: 1rem 4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-sizing: border-box;
}

header h1 {
    margin: 0;
}

header h3{
    color: #ff6f20 !important;
}

header .navbar-brand-title:hover{
    color: #be4300 !important;
    text-decoration: none !important;
}

.navbar-brand-title h3:hover{
    color: #be4300 !important;
    text-decoration: none !important;
}

header a {
    color: var(--white);
    text-decoration: none;
    /* padding-top: 1em !important; */
}

header a:hover {
    text-decoration: none;
}

/* Wrapper to handle sticky header/footer */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Main content: fills space between header and footer */
/* .main-content2 {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
} */

/* Container Styles */
.app-container {
    flex: 1 0 auto; /* Grow and shrink to fill space above footer */
    width: 100%;
    padding: 0 15em 1em 15em;
    background: var(--white);
    box-shadow: 0 0 10px var(--shadow);
    background: rgba(255, 255, 255, 0.918); /* Slight transparency keeps contrast */
    word-wrap: break-word; /* prevent overflow from long text */
}

.awra-public-content {
    background: transparent !important;
    box-shadow: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.landing{
    /* margin-top: -6em; */
}

.inner-container{
    padding: 0 8em;
}

/* Footer Styles */
footer {
    flex-shrink: 0; /* Prevent footer from shrinking */
    position: fixed;
    text-align: center;
    /* background-color: var(--dark); */
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #111827 100%);
    color: var(--white);
    bottom: 0;
    width: 100%;
    height: auto;
    padding: 1rem 1rem;
    font-size: 0.7em;
    z-index: 100;

}

footer p {
    margin: 0;
    width: 100%; /* Ensure p takes up full width of its container */
    font-size: x-small;
}

.login-form{
    max-width: 90%;
    margin: auto;
    margin: 0;
}

/* Form Styles */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border-gray);
    border-radius: 4px;
}

.justify-content-center{
    display: flex;
    justify-content: center;
}

.justify-content-center a{
    text-align: center;
}


.contact-input{
    width: 80% !important;
}

.form-group select {
    width: 95%;
    padding: 8px;
    border: 1px solid var(--border-gray);
    border-radius: 4px;
}


.form-group button {
    background-color: var(--blue);
    color: var(--white);
    border: none;
    padding: 1em 7em;
    border-radius: 4px;
    cursor: pointer;
}

.alert-danger {
    color: red;
    /* background-color: #edd4d4; */
    background-color: #fee2e2;
    border-color: #e6cbc3;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.alert-success {
    color: #048522;
    background-color: #d4edda;
    border-color: #c3e6cb;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
}


.btn-info {
    background-color: #209cee;
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }

  .btn-info:hover {
    background-color: #1177cc;
  }


.navbar-brand .brand {
    display: flex;
    align-items: center; /* Centers items vertically */
    text-decoration: none; /* Removes underline from link */
    transition: color 0.3s ease, background-color 0.3s ease; /* Smooth transition for color changes */
}

.brand-logo {
    height: 40px; /* Adjust as needed */
    margin-right: 10px; /* Space between the image and text */
}

.errors-brand-logo{
    height: 60px;
}

.till-payment-img{
    width: 15em;
    height: auto;
}

.brand-text {
    font-size: 1rem; /* Adjust text size as needed */
    color: #ffffff; /* Adjust text color as needed */
}

.brand {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.brand h3{
    padding: 0;
    margin: 0;
}

.navbar-brand.brand:hover {
    color: #ff851b; /* Lighter orange on hover */
}

.nav-right{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-group button:hover {
    background-color: var(--hover-blue);
}

/* Text Alignment Styles */
.text-center {
    text-align: center;
}

/* Link Styles */
.link {
    color: var(--blue);
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

/* Sidebar Navigation Styles */
.nav-item .nav-link {
    padding: 0.5rem 1rem;
}

#inventorySubmenu, #procurementSubmenu, #salesSubmenu {
    padding-left: 1.2rem;
    margin-left: -1em;
}

#inventorySubmenu .nav-item , procurementSubmenu .nav-item, salesSubmenu .nav-item{
    border-bottom: 1px solid #727477;
    border-top: 1px solid #727477;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 3.5em;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    width: 300px;
}

.plans-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 40px;
}

.plans-layout {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 24px;
}

.plans-categories {
    /* position: static; */
}

.plans-categories-card {
    background: linear-gradient(160deg, #0f172a 0%, #111827 100%);
    border-radius: 18px;
    padding: 20px;
    border: 1px solid #1f2937;
    color: #e2e8f0;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.plans-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #94a3b8;
}

.plans-categories-card h3 {
    margin: 8px 0 6px;
    font-size: 18px;
    color: #fff;
}

.plans-categories-card p {
    font-size: 12px;
    color: #cbd5f5;
    margin-bottom: 16px;
}

.plans-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.plans-category-list li {
    background: rgba(148, 163, 184, 0.12);
    border-radius: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.category-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #f8fafc;
}

.category-desc {
    margin-top: 4px;
    font-size: 11px;
    color: #cbd5f5;
    margin-left: 20px;
}

.cat-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    display: inline-block;
}

.cat-inventory { background: #38bdf8; }
.cat-procurement { background: #34d399; }
.cat-sales { background: #f472b6; }
.cat-pos { background: #fbbf24; }
.cat-accounting { background: #a78bfa; }

.plans-category-note {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 11px;
    color: #e2e8f0;
}

.note-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(56, 189, 248, 0.2);
    border-radius: 999px;
    font-size: 10px;
    color: #7dd3fc;
    font-weight: 600;
    width: fit-content;
}

.pricing-cards--detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3.5em;
    align-items: start;
    padding-top: 10px;
    width: 100%;
}

.pricing-card.plan-card {
    width: 90%;
    text-align: left;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 16px;
    overflow: visible;
    min-width: 0;
}

.plan-card-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.plan-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eef2ff;
    color: #4338ca;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.plan-meta {
    font-size: 12px;
    color: #64748b;
}

.plan-section {
    border-top: 1px solid #e2e8f0;
    padding-top: 10px;
}

.plan-section h4 {
    margin: 0 0 6px;
    font-size: 13px;
    color: #0f172a;
}

.plan-section ul {
    margin: 0;
    padding-left: 16px;
    font-size: 12px;
    color: #475569;
}

.plan-section p {
    margin: 0;
    font-size: 12px;
    color: #64748b;
}

.plan-section.muted h4,
.plan-section.muted p {
    color: #94a3b8;
}

.plan-actions {
    margin-top: auto;
}

.enterprise-card {
    border: 2px dashed #38bdf8;
    background: #f8fafc;
}

/* Base card quality (shared) */
.trust-card--horizontal[class*="bg-opt-"]{
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15,23,42,.08);
  overflow: hidden;
}


/* Trust Card Horizontal Update */
.trust-card--horizontal {
    display: flex !important;
    flex-direction: row;
    gap: 3rem;
    padding: 2.5rem 3rem !important;
    background-color: #0f172a;
    background-image:
        linear-gradient(rgba(56, 189, 248, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.1) 1px, transparent 1px),
        linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    background-size: 30px 30px, 30px 30px, 100% 100%;
    border: 1px solid #334155 !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

/* .trust-card--horizontal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(15, 23, 42, 0.4) 100%);
    pointer-events: none;
} */

.trust-card--horizontal .trust-card-main {
    flex: 1;
    min-width: 280px;
}

.trust-card--horizontal .trust-card-content {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trust-card--horizontal .plan-card-header .plan-title {
    color: #fff !important;
    font-size: 1.8rem;
}

.trust-card--horizontal .plan-card-header .plan-meta {
    color: #94a3b8 !important;
    font-size: 14px;
}

.trust-card--horizontal .plan-section {
    border-top: none;
    padding-top: 0;
}

.trust-card--horizontal .plan-section h4 {
    color: #38bdf8 !important;
    margin-bottom: 0.75rem;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Premium Background Options */

/* 11) Deep Cosmic */
.bg-premium-cosmic {
  background:
    radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.2) 0%, transparent 70%),
    #0f172a !important;
}

/* 12) Cyber Grid */
.bg-premium-cyber {
  background-color: #020617 !important;
  background-image:
    linear-gradient(rgba(14, 165, 233, 0.1) 2px, transparent 2px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.1) 2px, transparent 2px),
    radial-gradient(circle at center, rgba(14, 165, 233, 0.15) 0%, transparent 80%) !important;
  background-size: 40px 40px, 40px 40px, 100% 100% !important;
  border-color: rgba(14, 165, 233, 0.3) !important;
}

/* 13) Frosted Aura (Glassmorphism) */
.bg-premium-frosted {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(12px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}

/* 14) Midnight Aurora */
.bg-premium-aurora {
  background: linear-gradient(215deg, #051622 0%, #062c43 40%, #053b50 70%, #154c5e 100%) !important;
  position: relative;
}
.bg-premium-aurora::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(at 0% 0%, rgba(20, 184, 166, 0.15) 0, transparent 50%),
              radial-gradient(at 100% 0%, rgba(139, 92, 246, 0.15) 0, transparent 50%);
  pointer-events: none;
}

/* 15) Brushed Metal */
.bg-premium-metal {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255, 0.01) 0px, rgba(255,255,255, 0.01) 1px, transparent 1px, transparent 2px),
    linear-gradient(180deg, #1e293b 0%, #0f172a 100%) !important;
  border: 1px solid #475569 !important;
}

.trust-card--horizontal .plan-section ul {
    color: #cbd5e1 !important;
}

.trust-card--horizontal .plan-tag.trust-tag {
    background: #38bdf8;
    color: #0f172a;
}

.trust-card--horizontal .trust-btn {
    margin-bottom: 0;
    margin-top: 1.5rem;
    background: #38bdf8;
    color: #0f172a;
    font-weight: bold;
    border: none;
}

.trust-card--horizontal .trust-btn:hover {
    background: #fff;
    color: #0f172a;
}

@media (max-width: 1024px) {
    .trust-card--horizontal {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .trust-card--horizontal .trust-card-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .trust-card--horizontal {
        grid-column: auto;
    }
    .trust-card--horizontal .trust-card-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1100px) {
    .plans-layout {
        gap: 22px;
    }
    .plans-categories {
        position: static;
    }
}

@media (max-width: 768px) {
    .pricing-cards--detailed {
        grid-template-columns: 1fr;
    }
}

.plan-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    font-size: 1rem;
    color: #005fee; /* Change as needed */
    margin-bottom: 15px;
}

.features {
    padding: 0 0 0 30px;
    margin: 0 0 20px 0;
    text-align: left;
}

.features li {
    margin: 10px 0;
}

.btn-secondary {
    background-color: #6c757d; /* Gray background */
    color: #ffffff;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.pricing-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff9900;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-bottom: 1.5em;
}

.current-plan, .customize-btn{
    background-color: #0051ff;
}

.customize-btn:hover {
    background-color: #e29b00 !important;
}

.downgrade-btn{
    background-color: #ff0000;
}
.downgrade-btn:hover {
    background-color: #e60000 !important;
}

.pricing-btn:hover {
    background-color: #0051ff;
}

.featured {
    border: 2px solid #f59e0b; /* Highlighted border */
    background: linear-gradient(160deg, rgba(255, 247, 237, 0.95), rgba(253, 230, 138, 0.18));
    position: relative;
    z-index: 3;
    transform: translateY(-8px);
    margin-bottom: 8px;
    box-shadow: 0 26px 48px rgba(15, 23, 42, 0.2);
}

.featured::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 18px;
    border: 1px solid rgba(245, 158, 11, 0.4);
    pointer-events: none;
}

.change-plan-section {
    padding: 40px 20px;
    background-color: #f8f8f8; /* Light background for contrast */
    border-top: 1px solid #ddd; /* Subtle top border */
}

.change-plan-section h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.change-plan-section p {
    margin: 2em 0;
    color: #555; /* Darker text for readability */
}

.btn-change-plan {
    padding: 1em 5em;
    background-color: #e76f00; /* Change as needed */
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin: 1em 0;
}

.btn-change-plan:hover {
    background-color: #343a40; /* Darker shade for hover effect */
}

.policy-form-group{
    padding-bottom: 10px;
}
.signup-form-group button{
    padding: 1em 1em !important;
}

.signup-form-group input{
    width: 95%;
}

/* Custom styling for the email logs page */
.page-title {
    font-size: 2rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.email-logs-table {
    margin: 0 auto;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
}

.email-logs-table table {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
}

.email-logs-table th, .email-logs-table td {
    padding: 12px 15px;
    text-align: left;
}

.email-logs-table th {
    background-color: #4a76a8;
    color: #fff;
}

.email-logs-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.email-logs-table tr:last-child {
    border-bottom: none;
}

.email-logs-table .btn-reply-toggle {
    background-color: #4a76a8;
    color: #fff;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.email-logs-table .btn-open-toggle {
    background-color: #ff9900;
    color: #fff;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 5px;
}

.email-logs-table .btn-close{
    background-color: #c02d00;
}

.email-logs-table .btn-reply-toggle:hover {
    background-color: #365f8a;
}

.reply-row {
    display: none;
}

.reply-form {
    margin-top: 10px;
    background-color: #e9ecef;
    border-radius: 5px;
}

.reply-form textarea {
    width: 98%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.full-message {
    display: none;
    margin-top: 10px;
}

.expand-message {
    color: #4a76a8;
    cursor: pointer;
    font-size: 0.9rem;
}

.expand-message:hover {
    text-decoration: underline;
}

.td-wrap-text {
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words if necessary */
    max-width: 200px; /* Set a maximum width to prevent overflow */
}

.replies {
    margin-top: 10px;
    padding-left: 20px;
    border-left: 2px solid #fa8e00; /* Optional styling */
}

.replies ul {
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* Remove padding */
}

.btn-primary {
    background-color: #007bff; /* Blue background */
    color: #ffffff;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.btn-danger {
    background-color: #dc3545; /* Blue background */
    color: #ffffff;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-danger:hover {
    background-color: #c82333;
}

.resolved {
    color: #37a30d;
}

tr.end-chat {
    border-bottom: 4px solid #dc3545;
}

.fix-form{
    padding: 0 !important;
    box-shadow: 0 0;
    margin-top: 2px;
}

.reply-end-btns
{
    display: flex;
    justify-content: space-between;
}

.table-container {
    width: 100%;
    overflow-x: auto; /* Enables horizontal scrolling */
}

/* Tenant Management Styles */
.tenants-table {
    margin: 1.5rem auto;
    width: 100%;
    max-width: 1200px;
}

.tenants-table h1.page-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #333;
}

/* Alert styling for success messages */
.tenants-table .alert-success {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

/* Main tenants table styling */
.tenants-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    overflow: hidden;
}

.tenants-table thead tr {
    background-color: #f8f9fa;
    text-align: left;
    font-weight: bold;
    color: #333;
}

.tenants-table th, .tenants-table td {
    padding: 0.75rem;
    border: 1px solid #ddd;
}

.tenants-table tbody tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}

.tenants-table tbody tr:hover {
    background-color: #f1f1f1;
}

/* Users table inside tenants */
.tenants-table .users-row td {
    background-color: #fefefe;
    padding: 1rem;
    border: none;
}

.tenants-table .users-row table {
    width: 100%;
    border: 1px solid #ddd;
    margin-top: 0.5rem;
    border-collapse: collapse;
}

.tenants-table .users-row table th,
.tenants-table .users-row table td {
    padding: 0.5rem;
    text-align: left;
    border: 1px solid #ddd;
    font-size: 0.85rem;
}

.tenants-table .users-row table thead {
    background-color: #f3f4f6;
    color: #333;
}

/* Buttons styling */
.tenants-table .btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.tenants-table .btn-view-users {
    background-color: #007bff;
    color: #fff;
}

.tenants-table .btn-view-users:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.tenants-table .btn-view-vendors {
    background-color: #28a745;
    color: #fff;
}

.tenants-table .btn-view-vendors:hover {
    background-color: #218838;
    transform: scale(1.05);
}

.tenants-table .btn-danger {
    background-color: #dc3545;
    color: #fff;
}

.tenants-table .btn-danger:hover {
    background-color: #b52a37;
    transform: scale(1.05);
}

.pricing-toggle{
    display: flex;
    flex-direction: column;
}

/* Flat Toggle */
.toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: start;
}

/* .toggle-container span {
    flex: 1;
    text-align: center;
} */


.toggle-checkbox {
    display: none;
}

.toggle-slider {
    width: 60px;
    height: 1.5em;
    background-color: #bbb;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-slider::before {
    content: "";
    position: absolute;
    top: 0.1em;
    left: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: white;
    transition: transform 0.3s ease;
}

.toggle-checkbox:checked + .toggle-slider {
    background-color: #ff851b;
}

.toggle-checkbox:checked + .toggle-slider::before {
    transform: translateX(30px); /* Move knob to the right */
}

.toggle-text {
    padding: 0.5em 1.5em; /* Increased horizontal padding */
    cursor: pointer;
    font-weight: 500;
    background-color: transparent; /* Changed from #fff to transparent */
    color: #cbd5f5; /* Light text for dark theme */
    border-radius: 999px; /* Added border-radius */
    transition: all 0.2s ease;
}

.toggle-text:hover {
    color: #e76f00;
}

/* Highlight the active text */
.toggle-text.active {
    background-color: #4f46e5;
    color: #fff;
    border-radius: 999px; /* Ensure active state is also rounded */
}

/*----------------------------------------------------------------
Confirm payment blade*/
.divider{
    border: none;
    height: 1px;
    background-color: #ffa600;
    margin: 30px 0;
}

.plan-confirmation-section {
    padding: 50px 80px;
    background: linear-gradient(135deg, #ff6f20, #007bff);
    margin: -3em;
    border-radius: 8px;
}
.flex-container {
    display: flex;
    justify-content: space-between; /* Space between items */
    align-items: flex-start; /* Align items at the start */
}
.flex-item {
    flex: 1; /* Allow items to grow */
    margin: 20px; /* Margin between items */
}
.plan-summary, .addons-section {
    background-color: #fff;
    color: #333;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.plan-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.plan-price {
    font-size: 1.5rem;
    color: #6e45e2;
    margin-bottom: 20px;
}
.plan-features {
    list-style: none;
    padding: 0;
}
.plan-features li {
    font-size: 1.2rem;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}
.plan-features li::before {
    content: '\2713'; /* Unicode for checkmark (✓) , Bullet points: • (\2022), Right Arrow: → (\2192) , Star: ★ (\2605),  Font Awesome check icon - content: '\f00c';*/
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}
.fancy-form {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-no-shaddow{
    box-shadow: none !important;
}

.fancy-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #6e45e2;
    border-radius: 5px;
    font-size: 1rem;
}
.fancy-btn {
    display: inline-block;
    background-color: blue;
    color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.fancy-btn:hover {
    background-color: #5437d6;
}
.confirm-pay-btn{
    width: -webkit-fill-available;
}

.payment-method {
    margin: 10px 0;
    font-size: 1.1rem;
}

.info-text{
    font-size: 0.9rem;
}

.hor-btns{
    display: flex;
    gap: 2em;
}
.org-photo {
    width: 150px; /* Fixed width */
    height: 100px; /* Fixed height */
    border-radius: 10%; /* Circular photo */
    object-fit: contain; /* Preserve aspect ratio without cropping */
}
.table-responsive {
    overflow-x: auto; /* Add horizontal scrolling if needed */
    max-width: 100%; /* Prevent table from exceeding parent container width */
}
 /* Table Styling */
 .custom-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-table th {
    background: #2c3e50;
    color: #fff;
    padding: 12px;
    text-align: left;
}

.custom-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.custom-table tr:nth-child(even) {
    background: #f8f9fa;
}

.custom-table tr:hover {
    background: #ecf0f1;
    transition: background 0.3s;
}

/* Status Badge */
.badge {
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: capitalize;
}

/* Buttons */
.btn-custom {
    padding: 6px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-preview { background: #3498db; color: white; }
.btn-preview:hover { background: #2980b9; }

.btn-download { background: #2ecc71; color: white; }
.btn-download:hover { background: #27ae60; }

.btn-delete { background: #e74c3c; color: white; border: none; cursor: pointer; }
.btn-delete:hover { background: #c0392b; }

/* Pagination */
.pagination-custom {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.pagination-custom a {
    padding: 8px 12px;
    margin: 0 4px;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.pagination-custom a:hover {
    background: #1a252f;
}
/* Button container styles */
/* Button container for vertical alignment */
.button-container-vertical {
    display: flex;
    flex-direction: column; /* Align buttons top to bottom */
    gap: 10px; /* Add spacing between buttons */
    align-items: flex-start; /* Align buttons to the left */
}
.pro-plan, .basic-plan, .premium-plan{
    background: linear-gradient(135deg, #ff6f20, #007bff);
    color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.feature-divider {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    color: #007bff;
    margin-left: 3em;
}

/* Wrapper for dropdown */
.signin-dropdown, .nav-dropdown {
    position: relative;
    display: inline-block;
    padding: 0;
}

/* Toggle link */
.signin-toggle, .nav-toggle {
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.signin-toggle:hover, .app-nav-toggle:hover, .app-navbar-item:hover {
    /* background-color: #f0f0f0; */
    color: #e76f00;
}

/* Dropdown menu */
.signin-menu, .app-nav-menu {
    display: none;
    position: absolute;
    /* top: 85%; */
    /* right: 0; */
    background-color: #fff;
    /* border: 1px solid #ddd;
    border-radius: 6px; */
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    min-width: 240px;
    z-index: 1000;
}

.app-nav-menu--wide {
    min-width: 420px;
    padding: 8px;
}

.app-nav-menu--two-col {
    display: none;
}

.nav-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-left: 2px;
    transform: translateY(2px);
}

/* Menu items */
.signin-item, .app-nav-item {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s, color 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.app-nav-menu--wide .app-nav-item {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.95rem;
}

.signin-item:hover, .app-nav-item:hover {
    background-color: #f5f5f5;
    color: #e76f00;
}

.app-nav-menu--wide .app-nav-item:hover {
    background: rgba(148, 163, 184, 0.12);
}

/* Show menu only on click (no hover) */

@media (min-width: 992px) {
    .app-nav-menu--two-col {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
        gap: 6px 8px;
    }

    .app-nav-menu--two-col .nav-divider,
    .app-nav-menu--two-col .nav-submenu-container {
        grid-column: 1 / -1;
    }

    .app-nav-menu--two-col .nav-submenu-items {
        max-width: 240px;
    }
}

@media (min-width: 769px) {
    .app-nav-menu--mega {
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        top: var(--awra-mega-top, 72px);
        width: 100%;
        max-height: none;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        overflow: visible;
        transition: none;
        padding: 10px 16px;
        text-align: left;
        justify-items: start;
        align-items: start;
    }

    .app-nav-menu--mega.is-open {
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-rows: 44px;
        gap: 4px;
        align-items: start;
        justify-items: start;
    }

    .app-nav-menu--mega.app-nav-menu--two-col.is-open {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(220px, 1fr);
        grid-template-rows: repeat(6, 44px);
        gap: 4px 12px;
    }
}

@media (min-width: 769px) {
    .app-nav-menu--mega.is-open {
        height: calc(6 * 44px + 24px);
        overflow: hidden;
    }

    .app-nav-menu--mega.is-open .app-nav-item {
        white-space: nowrap;
    }

    .app-nav-menu--mega .app-nav-item {
        padding: 0 10px;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        border-radius: 10px;
        gap: 10px;
        height: 100%;
        align-self: stretch;
        width: 100%;
        line-height: 1.1;
        text-align: left;
    }

    .app-nav-item-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        line-height: 1.1;
        /* padding-bottom: 1em; */
    }

    .app-nav-menu--mega .app-nav-item:hover {
        background: rgba(148, 163, 184, 0.16);
        color: #0f172a;
    }

.app-nav-menu--mega .app-nav-item.active {
    background: rgba(59, 130, 246, 0.18);
    color: #1e3a8a;
    font-weight: 600;
}

.awra-image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.78);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 10000;
}

.awra-image-lightbox__img {
    max-width: min(1100px, 92vw);
    max-height: 86vh;
    border-radius: 16px;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.45);
    background: #fff;
}

.awra-image-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.7);
    color: #fff;
    border: none;
    display: grid;
    place-items: center;
    font-size: 22px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 10001;
}

.awra-image-lightbox__nav:hover {
    background: rgba(15, 23, 42, 0.9);
    transform: translateY(-50%) scale(1.05);
}

.awra-image-lightbox__prev {
    left: 24px;
}

.awra-image-lightbox__next {
    right: 24px;
}

.awra-image-lightbox__close {
    position: absolute;
    top: 10em;
    right: 0.5em;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: none;
    background: rgba(15, 23, 42, 0.7);
    color: #fff;
    font-size: 20px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 10002;
}

.awra-image-lightbox__close:hover {
    background: rgba(15, 23, 42, 0.9);
    transform: scale(1.05);
}

.awra-image-lightbox__caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    z-index: 10001;
    text-align: center;
    max-width: min(90vw, 420px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.awra-lightbox-open {
    overflow: hidden;
    touch-action: none;
}

@media (max-width: 768px) {
    .awra-image-lightbox {
        padding: 0;
        background: rgba(15, 23, 42, 0.92);
    }

    .awra-image-lightbox__img {
        width: 100vw;
        max-width: 100vw;
        max-height: 100dvh;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        object-fit: contain;
    }

    .awra-image-lightbox__caption {
        bottom: 72px;
        max-width: calc(100vw - 24px);
        white-space: normal;
        text-overflow: unset;
    }

    .awra-image-lightbox__nav {
        top: auto;
        bottom: 16px;
        transform: none;
        width: 42px;
        height: 42px;
    }

    .awra-image-lightbox__nav:hover {
        transform: none;
    }

    .awra-image-lightbox__prev {
        left: 12px;
    }

    .awra-image-lightbox__next {
        right: 12px;
    }

    .awra-image-lightbox__close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

.awra-gallery-card {
    position: relative;
}

.awra-insights-hero {
    --awra-insights-gradient: linear-gradient(135deg, #2563eb, #22d3ee);
    padding: 12px;
    border-radius: 32px;
    background: var(--awra-insights-gradient);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
}

.awra-insights-hero__inner {
    background: #ffffff;
    border-radius: 24px;
    padding: 10px;
}

.awra-insights-hero__image {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.2);
}

.awra-insights-hero--overview {
    --awra-insights-gradient: linear-gradient(135deg, #4f46e5, #7c3aed, #22d3ee);
}

.awra-insights-hero--inventory {
    --awra-insights-gradient: linear-gradient(135deg, #059669, #34d399, #60a5fa);
}

.awra-insights-hero--procurement {
    --awra-insights-gradient: linear-gradient(135deg, #2563eb, #38bdf8, #0ea5e9);
}

.awra-insights-hero--sales {
    --awra-insights-gradient: linear-gradient(135deg, #f97316, #facc15, #fb7185);
}

.awra-insights-hero--accounting {
    --awra-insights-gradient: linear-gradient(135deg, #0f766e, #22c55e, #84cc16);
}

.awra-insights-fab {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 11000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #0f172a;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.awra-insights-fab:hover {
    color: #ffffff;
    background: #1f2937;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .awra-insights-fab {
        right: 16px;
        bottom: 16px;
        padding: 9px 14px;
        font-size: 0.88rem;
    }
}

.awra-gallery-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.78);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.awra-gallery-stat {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.9);
    color: #0f172a;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
}

.awra-zoomable {
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

.awra-zoomable:hover {
    transform: scale(1.01);
}

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

.landing ul li {
    margin-left: 0;
}

    .app-nav-icon {
        width: 32px;
        height: 32px;
        display: grid;
        place-items: center;
        border-radius: 8px;
        font-size: 1.08rem;
        color: #0f172a;
        background: transparent;
        box-shadow: none;
        flex: 0 0 32px;
        line-height: 1;
        vertical-align: middle;
        transform: translateY(1px);
    }

    .app-nav-icon::before {
        display: block;
        line-height: 1;
        margin: 0;
    }

    .app-nav-icon--inventory { color: #1d4ed8; background: transparent; }
    .app-nav-icon--procurement { color: #0369a1; background: transparent; }
    .app-nav-icon--vendor { color: #c2410c; background: transparent; }
    .app-nav-icon--sales { color: #15803d; background: transparent; }
    .app-nav-icon--pos { color: #7c3aed; background: transparent; }
    .app-nav-icon--accounting { color: #0f766e; background: transparent; }
    .app-nav-icon--qbo { color: #059669; background: transparent; }
    .app-nav-icon--insights { color: #2563eb; background: transparent; }
    .app-nav-icon--mobile { color: #4338ca; background: transparent; }
    .app-nav-icon--company { color: #334155; background: transparent; }
    .app-nav-icon--security { color: #b91c1c; background: transparent; }
    .app-nav-icon--resource { color: #b45309; background: transparent; }
    .app-nav-icon--blog { color: #be185d; background: transparent; }

    .app-nav-menu--mega .app-nav-section-title {
        padding: 4px 10px 2px;
        font-size: 0.7rem;
        letter-spacing: 0.08em;
    }
}

@media (max-width: 768px) {
    .app-nav-menu--mega {
        position: static;
        width: 100%;
        padding: 10px 0; /* Remove side padding to avoid double indent */
        box-shadow: none; /* Shadow on mobile looks messy */
        margin-top: 5px;
        max-height: none; /* Let it grow */
        overflow: visible;
        text-align: left;
        background: transparent !important; /* Use parent background */
    }

    .app-nav-menu--mega.is-open {
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-rows: 44px;
        gap: 6px;
        height: auto;
        align-items: start;
        justify-items: start;
    }

    .app-nav-menu--mega.app-nav-menu--two-col.is-open {
        grid-auto-flow: row;
        grid-template-columns: 1fr;
    }

    .app-nav-menu--mega .app-nav-item {
        height: auto;
        /* min-height: 48px; */
        /* padding: 8px 12px; */
        gap: 12px;
        white-space: normal;
        text-align: left;
        justify-content: flex-start;
        border-radius: 8px;
        /* margin-bottom: 2px; */
    }

    .app-nav-menu--mega .app-nav-item.active {
        background: rgba(59, 130, 246, 0.16);
    }
}

.app-nav-section-title {
    padding: 15px 12px 4px !important;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.9);
    font-weight: 700;
}

.signin-menu.is-open {
    display: block;
}

/* Submenu Styles */
.nav-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 5px 0;
}

/* Ensure the container is the anchor for the absolute child */
.nav-submenu-container {
    position: relative;
    display: block;
}

.submenu-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 15px; /* space for the arrow */
}

/* Desktop Flyout Styles */
@media (min-width: 769px) {
    .nav-submenu-items {
        display: none;
        position: absolute;
        left: 100% !important; /* Move to the right of the parent */
        top: 0 !important;
        background-color: #ffffff;
        box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        min-width: 200px;
        z-index: 9999;
        /* border-radius: 4px; */
        border: 1px solid #ddd;
    }

    .nav-submenu-container:hover > .nav-submenu-items {
        display: block !important;
    }
}

/* Mobile Accordion Styles */
@media (max-width: 768px) {
    .nav-submenu-items {
        display: none;
        position: static; /* Stack vertically */
        box-shadow: none;
        padding-left: 20px;
        background-color: #fcfcfc;
        border: none;
        max-height: calc(100vh - 300px); /* Allow scrolling if items exceed viewport */
    }
    .nav-submenu-container.open .nav-submenu-items {
        display: block;
        overflow-y: auto; /* Enable scrolling for submenu items */
    }
    .app-nav-item {
        color: #f8f8f8;
    }

    .nav-dropdown .nav-submenu-items {
        padding-left: 1.5rem;
        margin-left: 0;
        width: 100%;
    }
}

/* Utility Classes for Dashboard Alignment */
.no-p-m {
    padding: 0 !important;
    margin: 0 !important;
}

.m-t-0 {
    margin-top: 0 !important;
}

.f-start {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Ensure Row and Column alignment in dashboard-panel */
.dashboard-panel .row {
    margin-left: -15px;
    margin-right: -15px;
}

.dashboard-panel [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

.dashboard-panel ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left;
}

.dashboard-panel ul li {
    margin-bottom: 5px;
    padding-left: 0 !important;
}

.dashboard-panel h4 {
    text-align: left;
    margin-left: 0 !important;
}

.text-inventory {
    color: #4a5568;
}

.app-navbar-items .home{
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffaa00;
}

.app-navbar-items .home:hover{
    color: #e76f00;
}


.custom-app-btn{
    margin: 5px;
}
/*--------------------------------------------------------------

/* Alerts */
.alert {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: 500;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

/* Form labels and inputs */
.form-label {
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: #374151;
}

.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #d1d5db;
    padding: 0.5rem 0.75rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    /* margin: 5px; */
    width: 80%;
}


.form-control-fix{
    margin: 0 !important;
}

.form-control:focus, .form-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.2);
    outline: none;
}

.contact-submit-btn{
    text-align: left;
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 500;
    /* padding: 0.45rem 0.9rem; */
    transition: all 0.2s;
}

.btn-outline-primary {
    color: #3b82f6;
    border-color: #3b82f6;
}

.btn-outline-primary:hover {
    background-color: #3b82f6;
    color: #fff;
}

.btn-success {
    background-color: #10b981;
    /* border-color: #10b981; */
    color: #fff;
}

.btn-success:hover {
    background-color: #059669;
    border-color: #059669;
}

/* Rule & Action blocks */
.rule, .action {
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background-color: #f9fafb;
    position: relative;
}

/* Remove buttons for rules/actions */
.rule .remove-btn, .action .remove-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: #ef4444;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.rule .remove-btn:hover, .action .remove-btn:hover {
    background-color: #b91c1c;
}

/* Email params */
.email-params {
    background-color: #eef2ff;
    border-radius: 8px;
    padding: 0.8rem;
    margin-top: 0.5rem;
}

/* Spacing for multiple rules/actions */
#rules-container .rule + .rule,
#actions-container .action + .action {
    margin-top: 1rem;
}

.tenant-table-td{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 1.2em;
}

table .tenant-table-td{
    padding: 2em;
}

.features li:nth-child(1){
    margin: 0 1em 0 -0.8em;
    text-align: center ;
    list-style-type: none;
}

.fit-image{
    width: 100%;
    height: auto;
    object-fit: contain;
}

.mfa-form{
    max-width: 80%;
}

.mfa-form button{
    margin-top: 2em;
}


.auth-container {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 100vh;
    margin: 0 auto;
    gap: 0;
    background: #f8fafc;
    box-sizing: border-box;
    align-items: stretch;
}

.auth-left {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 45%, #0f766e 100%);
    color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    min-height: 100vh;
    overflow: hidden;
    box-sizing: border-box;
}

.auth-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.35), transparent 55%);
    opacity: 0.9;
    pointer-events: none;
}

/* .auth-left-content {
    max-width: 90%;
}
*/

.brand-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-style: italic;
    opacity: 0.9;
}

.features-list {
    padding: 0;
    margin-bottom: 20px;
    list-style: inside circle;
}

.features-list li {
    margin: 10px 0;
    font-size: 1.1rem;
}

.highlight {
    margin-top: 20px;
    font-weight: bold;
    font-size: 1.1rem;
}

.auth-right {
    flex: 0 0 45%;
    background: #ffffff;
    min-height: 100vh;
    box-shadow: -10px 0 30px rgba(15, 23, 42, 0.05);
    box-sizing: border-box;
    position: relative;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 24px;
    width: 100%;
    margin: 0;
    overflow-x: hidden;
}

.auth-right .login-form {
    width: 100%;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.auth-right .form-group {
    display: grid;
    gap: 6px;
    width: 100%;
}

.auth-right input,
.auth-right select,
.auth-right textarea {
    width: 100% !important;
    box-sizing: border-box;
}

.auth-right .change-plan-section .container {
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.auth-right .change-plan-section .btn {
    margin: 0 auto;
}

.auth-right-panel h4,
.auth-right-panel p {
    margin-left: auto;
    margin-right: auto;
}

.auth-right-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Ensure consistent form width */
.auth-right form,
.auth-content-padding {
    width: 100%;
}

.auth-right-content,
.auth-top-card,
.auth-content-padding,
.auth-right-panel,
.auth-right .change-plan-section .container {
    width: 100%;
    box-sizing: border-box;
}

.auth-right-content {
    overflow-x: hidden;
}

.auth-content-padding {
    margin: 0 auto;
    padding: 0;
}

.auth-top-card {
    padding: 0;
}

.img-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.img-logo {
    max-width: 100%;   /* adjust size as needed */
    height: auto;
    border-radius: 12px; /* optional for rounded corners */
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.2); fancy shadow */
}

.feature-highlight {
    background-color: #f9fafb;     /* light gray background */
    border: 2px solid #e5e7eb;     /* subtle border */
    border-radius: 16px;           /* rounded corners */
    padding: 2rem;                 /* spacing inside */
    margin: 2.5rem 0;              /* spacing outside */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* soft shadow */
    text-align: center;            /* center align everything */
}

.feature-highlight h2 {
    font-size: 1.75rem;
    color: #1e3a8a;                /* deep indigo */
    margin-bottom: 1rem;
}

.feature-highlight p {
    font-size: 1.1rem;
    color: #374151;                /* neutral dark gray */
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-highlight img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}


.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0;
}

@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.feature-card {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2a4d8f;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-card p {
    color: #444;
    line-height: 1.6;
}

.summary-box, .confirm-plan-summary-box {
    background: #f4f8ff;
    border-left: 4px solid #2a4d8f;
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 6px;
}

.reg-summary-box, .login-highlight, .plan-highlight, .mfa-highlight{
    background: #1e3c72;
    border-left: 4px solid #ff851b;
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 6px;
}
.summary-box h3 {
    margin: 0 0 8px 0;
    color: #2a4d8f;
}
.highlight {
    background: #fff9e6;
    border: 1px solid #ffe58f;
    padding: 12px 16px;
    margin: 20px 0;
    border-radius: 6px;
    font-weight: 500;
}
.comparison {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 0.95rem;
}
.comparison th, .comparison td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}
.comparison th {
    background: #2a4d8f;
    color: #fff;
}
.comparison tbody tr:nth-child(even) {
    background: #f9f9f9;
}
.cta-box {
    background: linear-gradient(135deg, #2a4d8f, #3f6ac8);
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    margin: 40px 0;
}
.cta-btn {
    display: inline-block;
    margin-top: 12px;
    background: #fff;
    color: #2a4d8f;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
}
.cta-btn:hover {
    background: #ff851b;
    color: #fff;
}

.payment-info{
    display: flex;
    flex-direction: column;
    width: 50%;

}

.addons-section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    overflow-x: auto;
}

.addons-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.addons-section p {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.addons-table {
    width: 100%;                /* force it to fit parent */
    border-collapse: collapse;
    font-size: 0.95rem;
    table-layout: fixed;        /* prevents cells from expanding too much */
    word-wrap: break-word;
}

.addons-table th,
.addons-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.addons-table th {
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
}

.addons-table tr{
    align-items: center;
}

.addons-table td {
    color: #374151;
}

.addons-table input[type="number"] {
    width: 80px;
    padding: 0.4rem 0.6rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
}

.addons-table input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

#addon-price {
    background: #f3f4f6;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #374151;
}

.custom-link{
    color:#007BFF;
    text-decoration:none;
    font-weight:600;
}

.custom-link-2{
    color:#007BFF;
    text-decoration:none;
    font-weight:300;
}

.custom-link-3{
    color: rgb(255, 145, 0);
    text-decoration:none;
    font-weight:300;
}

.custom-link-3:hover{
    color: #f75c1a;
    text-decoration: none;
}

.custom-link:hover, .custom-link-2:hover{
    color: #f79b1a;
    text-decoration: none;
}

/* Paragraphs */
.auth-right p {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 0.75rem;
}

/* QR code styling */
.auth-right svg {
    display: block;
    margin: 0 auto 1rem;
    max-width: 200px;
    height: auto;
}

.manual-code-container {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #f5f7fa; /* light grey background */
    border: 1px dashed #a0aec0; /* subtle dashed border */
    border-radius: 8px;
    text-align: center;
    font-family: 'Courier New', monospace; /* makes code look distinct */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.manual-code-container p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #4a5568; /* dark grey text */
}

.manual-code-container .manual-code {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #edf2f7; /* slightly lighter grey */
    color: #2d3748; /* almost black text */
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 6px;
    user-select: all; /* allow easy copy */
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.manual-code-container .manual-code:hover {
    background-color: #e2e8f0; /* darker hover */
    transform: scale(1.05);
}

/* MFA form styling */
.mfa-form {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mfa-form label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.mfa-form input[type="text"] {
    padding: 0.5rem 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    width: 100%;
    transition: border-color 0.2s;
}

.mfa-form input[type="text"]:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 2px rgba(66, 153, 225, 0.2);
}

.nav-bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5em;
}

.app-navbar-items{
    padding: 0;
}

/* Container */
.about-section {
    background: #f9fafc;
    padding: 60px 20px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Header */
.about-header h1 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
}

.about-header p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Mission / Vision / Values */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.about-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    text-align: left;
    box-shadow: 0px 6px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease-in-out;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 10px 20px rgba(0,0,0,0.12);
}

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #333;
}

.about-card p, .about-card ul {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-card ul {
    padding-left: 20px;
}

/* What We Do */
.about-services {
    background: #fff;
    border-radius: 15px;
    padding: 50px 30px;
    margin-bottom: 50px;
    box-shadow: 0px 6px 12px rgba(0,0,0,0.05);
}

.about-services h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #222;
}

.about-services p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 35px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: #f9fafc;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s;
}

.service-card:hover {
    background: #fff3d4;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.08);
}

.service-card h4 {
    color: #444;
    font-size: 1rem;
    margin-bottom: 8px;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Call to Action */
.about-cta {
    text-align: center;
    padding: 40px 20px;
}

.about-cta h2, .app-social-links h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #222;
}

.app-social-links a{
    text-align: center;
}

.about-cta p {
    color: #555;
    max-width: 700px;
    margin: 0 auto 25px;
    font-size: 1rem;
}

.cta-button {
    background: #d6a400;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}

.cta-button:hover, .cta-sign-up:hover{
    background: #ff8c00 !important;
}

.founder-team-section {
    background: linear-gradient(135deg, #e9e9e9, #ffffff);
    padding: 30px 20px;
    text-align: center;
    border-radius: 20px;
}
.founder-team-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
    position: relative;
}
.founder-team-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #d6a400;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Founder Card */
.founder-card {
    background: #fff;
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.founder-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}
.founder-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0;
    border: 5px solid #d6a400;
    object-fit: cover;
}
.founder-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 !important;
}
.founder-card .role {
    font-size: 1rem;
    color: #777;
    margin: 0;
}
.founder-card .bio {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #eee;
    color: #555;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-icon:hover {
    transform: translateY(-3px);
    color: #fff;
}
.social-icon.linkedin:hover { background: #0077b5; }
.social-icon.twitter:hover { background: #000; }
.social-icon.youtube:hover { background: #ff0000; }
.social-icon.facebook:hover { background: #1877f2; }

/* Team */
.team-box {
    margin-top: 40px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}
.team-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
    box-shadow: 0 10px 20px rgba(218, 134, 0, 0.1);
}
.team-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid #eee;
    object-fit: cover;
    margin: 0;
}
.team-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}
.team-card .role {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

.team-card .headshot {
    color: #555;
}

.social-icon.github:hover {
    background: #24292f; /* darker GitHub color */
}

.social-icon.website:hover {
    background: #2196f3; /* darker hover */
}

.app-navbar-item.active,
.app-nav-item.active,
.app-nav-toggle.active,
.signin-item.active,
.signin-toggle.active {
    color: #d6a400;
    font-weight: bold;
    /* border-bottom: 2px solid #d6a400; */
}

.register-nav-btn, .register-nav-btn.active{
    border: none !important;
}


/* Blog Page Styles */
.blog-container, .app-errors-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    color: #333;
    line-height: 1.7;
}

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

.blog-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 0.5rem;
}

.blog-meta {
    font-size: 0.9rem;
    color: #777;
}

.blog-featured img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.blog-content {
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.blog-content h2,
.blog-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #2a4d9b;
}

.blog-content p {
    margin-bottom: 1.2rem;
}

/* Video Section */
.blog-video {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.blog-video h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #444;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Related Blogs */
.related-blogs {
    margin-top: 2rem;
}

.related-blogs h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.related-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-item {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.related-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.related-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2a4d9b;
}


.blog-featured.banner {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.blog-featured.banner img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    filter: brightness(70%);
    border-radius: 20px;
}

.banner-overlay {
    position: absolute;
    bottom: 20px;
    left: 30px;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.banner-overlay h2 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.gradient-box {
    padding: 60px 20px;
    border-radius: 20px;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.gradient-box h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}



.signup-card {
    margin: 60px auto;
    padding: 40px 20px;
    max-width: 700px;
    border-radius: 20px;
    background: linear-gradient(135deg, #2575fc, #6a11cb);
    color: white;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.signup-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.signup-card p {
    font-size: 1rem;
    margin-bottom: 25px;
}

.signup-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.signup-actions a {
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-signup {
    background: #fff;
    color: #2575fc;
}

.btn-login {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 2px solid #fff;
}

.btn-signup:hover {
    background: #f19900;
}

.btn-login:hover {
    background: #fff;
    color: #2575fc;
}

.app-social-links {
    background: #f9fafc;
    border: 1px solid #e1e4e8;
    border-radius: 12px;
    padding: 20px;
    max-width: 400px;
    margin: 20px auto;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-social-links .icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 50%;
}

.app-social-links .icons a {
    /* display: flex; */
    align-items: center;
    /* gap: 10px; */
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-social-links .icons svg {
    width: 20px;
    height: 20px;
}

/* Platform-specific button styles */
.app-social-links .facebook { background: #1877F2; }
.app-social-links .twitter { background: #1DA1F2; }
.app-social-links .instagram { background: #E4405F; }
.app-social-links .linkedin { background: #0A66C2; }
.app-social-links .youtube { background: #FF0000; }

.app-social-links .icons a:hover {
    opacity: 0.9;
    transform: translateX(4px);
}

/* Hamburger Button */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Container */
.docs-container {
    display: flex;
    min-height: 30em;
    font-family: Arial, sans-serif;
}

/* Sidebar */
.docs-sidebar {
    width: 280px;
    background: #1f2937;
    color: #f9fafb;
    padding: 100px 20px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    box-sizing: border-box;
}

.docs-sidebar h2 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.menu-toggle {
    background: none;
    border: none;
    color: #f9fafb;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    width: 100%;
    padding: 10px 0;
    cursor: pointer;
}

.menu-toggle .menu-icon {
    font-size: 0.7em;
    margin-left: 5px;
    transition: transform 0.2s ease;
    display: inline-block;
}

.menu-toggle.active .menu-icon {
    transform: rotate(90deg);
}

.submenu {
    display: none;
    padding-left: 15px;
}

.submenu li {
    margin: 5px 0;
}

.submenu a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
}

.submenu a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Main Content */
.docs-content {
    margin-left: 280px;
    width: calc(100% - 280px);
    max-width: calc(100% - 280px);
    flex: 1;
    padding: 40px 80px;
    background: #f9fafb;
    overflow-y: auto;
    overflow-x: hidden;
    height: auto;
    box-sizing: border-box;
}

.docs-heading {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    border-bottom: 3px solid #4f46e5;
    padding-bottom: 5px;
}

.docs-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 18px;
    text-align: justify;
}

.docs-list {
    margin-left: 20px;
    padding-left: 0;
    list-style-type: disc;
    color: #1f2937;
    margin-bottom: 18px;
}

.docs-list li {
    margin-bottom: 10px;
}

.docs-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 1.5rem;
}

.custom-link {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
}

.custom-link:hover {
    text-decoration: underline;
    color: #3730a3;
}

/* docs-topbar (hidden on desktop) */
.docs-topbar, .accounting-topbar {
    display: none;
    background: #263344;
    color: #fff;
    padding: 0.5em 1.5em;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    position: fixed;
    width: -webkit-fill-available;
    margin: 0 -1em;
    /* top: 8.5em; */
}

.accounting-topbar {
    top: 5.5em;
}

.docs-topbar-title, .accounting-topbar-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.accounting-topbar h1{
    color: #fff !important;
}

.hamburger {
    background: none;
    border: none;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
}

/* Sidebar */
.docs-sidebar {
    width: 280px;
    background: #1f2937;
    color: #f9fafb;
    padding: 100px 20px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out;
}

.no-break {
    white-space: nowrap;
  }

.form-actions{
    display: flex;
}

.form-actions a{
    text-align: center;
}

.register-nav-btn-div{
    margin-bottom: -10px !important;
}

.register-nav-btn {
    display: inline-block;
    padding: 0.7em 1.5em;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #f19900;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.register-nav-btn:hover {
    color: #161616 !important;
    background: #d16200;
}

.register-nav-btn.active {
    background: #ff851b;
    color: black;
}

.custom-addons-table .fancy-input{
    width: 50% !important;
}

.payment-success{
    padding: 0 50px;
}

.app-beta-badge {
    font-size: 0.6rem;
    background-color: #f59e0b; /* amber/orange color */
    color: white;
    font-weight: bold;
    padding: 0.1em 0.3em;
    border-radius: 4px;
    text-transform: uppercase;
    vertical-align: super;
    margin-left: 0.3em;
}

.contact-us-div, .reset-password-div{
    margin: 0 20em;
}

.more-links li a{
    color: #f59e0b;
}

/* .nav-arrow{
    padding-top: 4px !important;
} */

.no-style-list{
    list-style: none;
}

.pricing-section{
    padding-top: 2em;
}

/* Responsive tweaks */
@media (max-width: 768px), (max-width: 1130px) {

    header h3{
        margin: 0 !important;
    }

    .nav-right{
        flex-direction: row;
        align-items: center;
    }

    /* Hide nav-bar on mobile by default */
    #nav-bar {
        display: none;
        flex-direction: column !important;
        position: absolute !important;
        top: 72px !important;
        left: 0 !important;
        width: 100% !important;
        background: #0f172a !important; /* Solid dark background */
        padding: 1.5rem !important;
        gap: 1.5rem !important;
        z-index: 2000 !important; /* High enough to overlay everything */
        box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
        box-sizing: border-box !important;
        align-items: flex-start !important; /* Aligns items to the left */
        text-align: left !important;
        max-height: calc(100vh - 72px) !important; /* Allow scrolling for menu items */
        overflow-y: auto !important; /* Enable vertical scroll */
    }

    #nav-bar.active {
        display: flex !important; /* show when active */
    }

    /* Enable scrolling for submenus on mobile */
    #nav-bar .app-nav-menu {
        display: none !important;
        max-height: calc(100vh - 200px) !important; /* Reserve space for header and other items */
        overflow-y: auto !important;
        position: relative !important;
    }

    #nav-bar .app-nav-menu.open {
        display: block !important;
    }

    .hamburger {
        display: block;
    }

    .app-container {
        width: 100%;
        padding: 0 15px;
    }

    /* Make the SIGN UP button full-width and centered on mobile */
    .register-nav-btn-div {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .register-nav-btn {
        display: block !important;
        width: 100% !important;
        max-width: 420px !important;
        text-align: center !important;
        padding: 0.7em 1.2em !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
        border-radius: 10px !important;
    }

	    .landing{
	        width: 100%;
	        margin: 0 0 -8em 0;
	    }
    .payment-info{
        width: 100%;
    }

    .confirmation-form{
        width: 90% !important;
    }

    body{
        background-size: 250vh 1000vh !important;
    }

    footer{
        font-size: 0.48em !important;
        padding: 1em 0 !important;
        white-space: wrap;
    }

    .inner-container{
        padding: 2rem 1rem !important;
    }

    .docs-content{
        padding: 6em 1em !important;
    }

    .auth-container {
        grid-template-columns: 1fr;
        padding: 0 !important;
    }

    .auth-left {
        display: none; /* Hide info section */
    }

    .auth-right, .contact-us-div {
        flex: none;
        padding: 2em 0;
        background: none;
        width: 90%;
    }

    .contact-us-div {
       align-self: center;
    }

     .contact-us-div .form-group input {
        width: 90% !important;
     }

    .contact-submit-btn {
        text-align: center;
    }


    .blog-container, .app-errors-container{
        padding-top: 3em;
    }

    .about-section{
        padding: 20px !important;
    }

    header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 1.25rem;
        height: 72px;
    }
    header h1 {
        font-size: 1rem;
    }
    /* .main-content2 {
        padding-top: var(--header-height, 64px) !important;
    } */
    .form-group input{
        width: 100% !important;
    }

    .form-group select {
        width: 100% !important;
    }

    .tenants-table h1.page-title {
        font-size: 1.5rem;
    }

    .tenants-table table, .tenants-table .users-row table {
        font-size: 0.8rem;
    }

    table .tenant-table-td{
        padding: 2em;
    }

    .pricing-cards{
        flex-direction: column;
        gap: 1.5em;
        align-items: center;
    }

    .plans-container{
        padding: 0 !important;
        width: 100% !important;
    }

    .flex-container{
        flex-direction: column;
    }

    .plan-confirmation-section{
        margin: -1em -1em -10em -1em !important;
        padding: 50px 0 !important;

    }
    .features li:nth-child(1){
        margin: 0 1em 0 -1em;
        text-align: center ;
    }

    .toggle-slider{
        width: 65px;
    }

    .signin-dropdown, .nav-dropdown{
        padding: 0 !important;
    }

    .app-nav-toggle {
        text-align: left !important;
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 !important;
        color: #f8fafc !important;
    }
    .nav-dropdown {
        width: 100% !important;
        display: block !important;
    }

    /* Consolidated into #nav-bar above */

    .nav-bar .app-navbar-item, .app-navbar-items{
        padding: 0 !important;
    }

    /* .nav-bar .register-nav-btn-div{
        padding: 0 1em 1em !important;
    } */

    .nav-bar .register-nav-btn-div .register-nav-btn{
        padding: 0.4em 0.8em !important;
    }

    .docs-sidebar {
        transform: translateX(-100%);
        /* padding-top: 13em; */
    }

    .docs-sidebar.active {
        transform: translateX(0);
        /* padding-top: 13em; */
    }

    .docs-content {
        margin-left: 0;
        padding: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .docs-topbar, .accounting-topbar {
        display: flex;
        /* padding-top: 1.5em; */
    }

    .docs-container{
        flex-direction: column;
    }

    .custom-addons-table .fancy-input{
        width: 50% !important;
    }

    .justify-content-center{
        flex-direction: column;
        gap: 1em;
        padding-top: 2em;
    }

    .form-actions{
        flex-direction: column;
        gap: 1em;
    }

    .contact-msg{
        width: 90% !important;
    }

    .pricing-section{
        padding-top: 0 !important;
    }

    .payment-success{
        padding: 0 !important;
    }

    .contact-us-div{
        margin: 0;
    }

    .reset-password-div{
        margin: 5em 3em;
    }

    .reset-password-div .form-group button{
        padding: 1em !important;
    }

    .signup-form-group button{
        width: 100%;
    }

}

.featured .plan-tag {
    background: #f59e0b;
    color: #111827;
}

.plans-hero {
    background: radial-gradient(circle at top, rgba(56, 189, 248, 0.18), transparent 55%),
                linear-gradient(120deg, #0f172a, #1e293b 60%, #0f172a);
    padding: 60px 24px 50px;
    color: #fff;
}

.plans-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.plans-hero-inner h1 {
    font-size: 34px;
    font-weight: 700;
    margin: 0;
}

.plans-hero-inner p {
    font-size: 14px;
    color: #cbd5f5;
    max-width: 520px;
    margin: 0;
}

.plans-toggle {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.plans-toggle-label {
    font-size: 13px;
    color: #cbd5f5;
}

.plans-toggle .toggle-container {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    padding: 4px;
    display: inline-flex;
}

.toggle-pill {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    font-size: 0.75em;
    padding: 2px 8px;
    border-radius: 999px;
    margin-left: 6px;
}

@media (max-width: 768px) {
    .plans-hero {
        padding: 50px 20px 40px;
    }
    .plans-hero-inner h1 {
        font-size: 28px;
    }
}

.plans-hero-secondary {
    background: #0b1220;
    padding: 16px 24px 22px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.plans-hero-secondary-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-chip {
    background: rgba(148, 163, 184, 0.12);
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.2);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.plans-footer {
    position: static;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #111827 100%);
    color: #e2e8f0;
    padding: 60px 24px 50px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.plans-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.plans-footer-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plans-footer-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.2);
    color: #7dd3fc;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.plans-footer-cta h3 {
    font-size: 26px;
    margin: 0;
    color: #fff;
}

.plans-footer-cta p {
    margin: 0;
    max-width: 720px;
    color: #cbd5f5;
    font-size: 14px;
    line-height: 1.6;
}

.plans-footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.plans-footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

.plans-footer-btn.primary {
    background: #38bdf8;
    color: #0f172a;
}

.plans-footer-btn.primary:hover {
    background: #7dd3fc;
}

.plans-footer-btn.ghost {
    border: 1px solid rgba(148, 163, 184, 0.4);
    color: #e2e8f0;
}

.plans-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.plans-footer-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    padding: 18px;
}

.plans-footer-card h4 {
    margin: 0 0 8px;
    font-size: 14px;
    color: #fff;
}

.plans-footer-card ul {
    margin: 0;
    padding-left: 16px;
    color: #cbd5f5;
    font-size: 12px;
    line-height: 1.6;
}

.plans-footer-note {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #94a3b8;
    font-size: 12px;
}

.plans-footer-note a {
    color: #7dd3fc;
    text-decoration: none;
}

/* Plan flow (select/customize/confirm) */
.plan-flow-hero {
    background: linear-gradient(130deg, #0f172a 0%, #1e293b 55%, #0f172a 100%);
    color: #e2e8f0;
    padding: 60px 24px 50px;
    /* margin-top: -4em; */
}
.plan-flow-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.plan-flow-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.2);
    color: #7dd3fc;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}
.plan-flow-hero h1 {
    margin: 0;
    font-size: 30px;
    color: #fff;
}
.plan-flow-hero p {
    margin: 0;
    color: #cbd5f5;
    max-width: 560px;
    font-size: 14px;
}
.plan-flow-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}
.plan-flow-chip {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.2);
    color: #e2e8f0;
    font-size: 12px;
}
.plan-flow-section {
    padding: 30px 0 80px;
    background: #f8fafc;
}
.plan-flow-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    margin: 0 3em;
}
.plan-flow-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.plan-flow-summary {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.plan-flow-summary h2 {
    margin: 0;
    font-size: 22px;
    color: #0f172a;
}
.plan-flow-summary .plan-flow-price {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}
.plan-flow-muted {
    color: #64748b;
    font-size: 13px;
}
.plan-flow-card .custom-table {
    margin-bottom: 0;
}
@media (max-width: 992px) {
    .plan-flow-grid {
        grid-template-columns: 1fr;
    }
    .plan-flow-hero {
        padding: 50px 20px 40px;
    }
}

.awra-micro-footer{
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #111827 100%);
    align-items: center;
}

@media (max-width: 768px) {
    .plans-footer {
    position: static;
        padding: 48px 20px 42px;
    }
    .plans-footer-cta h3 {
        font-size: 22px;
    }
    .plan-flow-grid {
        margin: 0;
    }
    .awra-micro-footer{
        padding: 0;
        gap: 0;
    }
    .mic-ft-sep{
        display: none;
    }
}

.plans-categories--row {
    width: 100%;
}

.plans-categories--row .plans-category-list {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.plans-categories--row .category-desc {
    margin-left: 20px;
}

.fix-fancy-form{
    box-shadow: none !important;
    background-color: unset !important;
}

.app-nav-item .fas, .app-nav-item .fab {
    align-content: center;
}

.mx-2{
    margin-inline: calc(var(--spacing) * 2);
}

.plan-hero-info {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 1.25rem;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
}

.plan-hero-info-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.info-block {
  background: #f9fafb;
  border-radius: 18px;
  padding: 0.85rem 1rem;
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.info-block h4 {
  margin: 0;
  font-size: 0.8rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4c5564;
}

.info-block p {
  margin: 0.35rem 0 0;
  font-size: 0.7rem;
  color: #111827;
  font-weight: 600;
}

.info-block strong {
  font-size: 0.7rem;
  font-weight: 700;
}

.info-block:hover {
  border-color: #6366f1;
  transform: translateY(-2px);
}

.muted-note {
  font-size: 0.7rem;
  color: #4b5563;
  margin-top: 1rem;
  line-height: 1.5;
}

.li-circle-inside {
    list-style: circle inside;
}

.plans-footer-card a{
    color: #e76f00;
    text-decoration: none;
    font-weight: 600;
}

.w-stretch {
    width: stretch;
}
