html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.btn {
    margin: 5px;
}

/*---*/

h1, h2, h3, h4, h5, h6, a, .link-button, .navbar-brand, .nav-link, .text-body-emphasis {
    color: limegreen;
}

    a:hover, .navbar-brand:focus, .navbar-brand:hover, .nav-link:hover {
        color: lime;
    }

.nav-link {
    font-size: 20px;
}

.navbar-brand {
    font-size: 30px;
    line-height: 30px;
}

.navbar-user {
    font-size: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn, .btn-primary, .btn-success {
    background-color: limegreen;
    border-color: lime;
}


    .btn:focus, .btn:active .btn:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:hover {
        background-color: lime;
        border-color: limegreen;
    }

input, select, textarea {
    background-color: #333;
    color: limegreen;
    border: 1px solid limegreen;
}

.table {
    color: limegreen;
}

    .table > :not(caption) > * > * {
        color: limegreen;
    }

    .table td {
        background-color: #000;
        color: white;
    }

th {
    text-align: center;
}

/* QR Code Image Styling */
.qr-code-image {
    max-width: 400px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid limegreen;
    border-radius: 8px;
    padding: 10px;
    background-color: #111;
    box-shadow: 0 4px 12px rgba(0, 255, 0, 0.2);
}

/* ===== PRICING PAGE STYLES ===== */

/* Pricing Container */
.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 700;
    color: #32cd32;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.pricing-subtitle {
    font-size: 1.25rem;
    color: #b8b8b8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pricing Cards Wrapper */
.pricing-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 20px 0;
    align-items: start;
}

/* Pricing Card */
.pricing-card {
    background: linear-gradient(145deg, #262626 0%, #1f1f1f 100%);
    border: 1px solid #3a3a3a;
    border-radius: 16px;
    padding: 48px 32px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

    .pricing-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #32cd32 0%, #228b22 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .pricing-card:hover {
        transform: translateY(-8px);
        border-color: #32cd32;
        box-shadow: 0 16px 48px rgba(50, 205, 50, 0.2);
    }

        .pricing-card:hover::before {
            opacity: 1;
        }

/* Featured Card (Pro Plan) */
.pricing-card-featured {
    border: 2px solid #32cd32;
    transform: scale(1.02);
    position: relative;
    padding-top: 60px;
}

    .pricing-card-featured::before {
        opacity: 1;
        height: 5px;
    }

    .pricing-card-featured:hover {
        transform: translateY(-8px) scale(1.02);
    }

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #32cd32 0%, #28a428 100%);
    color: #000;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 16px rgba(50, 205, 50, 0.5);
    z-index: 10;
    white-space: nowrap;
}

/* Card Header */
.card-header {
    margin-bottom: 24px;
}

.plan-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #32cd32;
    margin: 0;
    text-align: center;
}

/* Card Price */
.card-price {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #3a3a3a;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #32cd32;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.price-period {
    font-size: 1rem;
    color: #888;
    font-weight: 500;
}

/* Card Actions */
.card-actions {
    margin-bottom: 32px;
    text-align: center;
}

.contact-heading {
    font-size: 1.1rem;
    color: #e0e0e0;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.subscription-form {
    margin-bottom: 12px;
}

.btn-subscribe {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .btn-subscribe::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn-subscribe:hover::before {
        width: 300px;
        height: 300px;
    }

.btn-monthly {
    background: linear-gradient(135deg, #32cd32 0%, #28a428 100%);
    color: #000;
    box-shadow: 0 4px 12px rgba(50, 205, 50, 0.3);
}

    .btn-monthly:hover {
        background: linear-gradient(135deg, #28a428 0%, #228b22 100%);
        box-shadow: 0 6px 20px rgba(50, 205, 50, 0.4);
        transform: translateY(-2px);
    }

.btn-yearly {
    background: linear-gradient(135deg, #2d2d2d 0%, #1f1f1f 100%);
    color: #fff;
    border: 2px solid #32cd32;
}

    .btn-yearly:hover {
        background: linear-gradient(135deg, #32cd32 0%, #28a428 100%);
        color: #000;
        border-color: #32cd32;
        transform: translateY(-2px);
    }

.yearly-bonus {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 1;
    margin-top: 5px;
    color: #3df03d;
    text-shadow: 0 0 10px rgba(50, 205, 50, 0.3);
}

/* Enterprise Contact Buttons */
.btn-enterprise {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-bottom: 16px;
}

.btn-enterprise:hover {
    text-decoration: none;
}

/* Current Plan Styles */
.pricing-card-current {
    border: 2px solid #ffd700 !important;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2) !important;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.02) 100%) !important;
}

    .pricing-card-current::before {
        background: linear-gradient(90deg, #ffd700 0%, #ffb347 100%) !important;
        opacity: 1 !important;
        height: 5px !important;
    }

.current-plan-badge {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #000;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.5);
    z-index: 10;
    white-space: nowrap;
}

.current-subscription-message {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-bottom: 16px;
}

    .current-subscription-message p {
        margin: 0;
        font-size: 1rem;
        color: #ffd700;
        font-weight: 600;
    }

    .current-subscription-message .subscription-end-date {
        font-size: 0.9rem;
        color: #ccc;
        font-weight: 400;
        margin-top: 8px;
    }

/* Disabled button styles */
.btn-subscribe:disabled,
.btn-subscribe[disabled] {
    background: #444 !important;
    color: #888 !important;
    cursor: not-allowed !important;
    border: 1px solid #555 !important;
    box-shadow: none !important;
    transform: none !important;
}

    .btn-subscribe:disabled:hover,
    .btn-subscribe[disabled]:hover {
        background: #444 !important;
        color: #888 !important;
        transform: none !important;
        box-shadow: none !important;
    }

/* Authentication Message */
.auth-message {
    background: rgba(50, 205, 50, 0.1);
    border: 1px solid rgba(50, 205, 50, 0.3);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    margin-bottom: 16px;
}

    .auth-message p {
        margin: 0;
        font-size: 0.95rem;
        color: #e0e0e0;
    }

    .auth-message a {
        color: #32cd32;
        text-decoration: none;
        font-weight: 600;
    }

    .auth-message a:hover {
        color: #28a428;
        text-decoration: underline;
    }

.btn-enterprise.btn-monthly {
    margin-bottom: 16px;
}

.btn-enterprise.btn-yearly {
    margin-bottom: 16px;
}

/* Trial Badge */
.trial-badge {
    display: inline-block;
    background: linear-gradient(135deg, #32cd32 0%, #28a428 100%);
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    margin: 0 auto;
    margin-top: 12px;
    box-shadow: 0 4px 12px rgba(50, 205, 50, 0.3);
    animation: pulse 2s infinite;
}
 
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(50, 205, 50, 0.3);
    }

    50% {
        box-shadow: 0 4px 20px rgba(50, 205, 50, 0.5);
    }
}

/* Card Features */
.card-features {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #3a3a3a;
    flex-grow: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-item {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.8;
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-weight: 500;
}

    .feature-item::before {
        content: '✓';
        position: absolute;
        left: 0;
        top: 10px;
        color: #32cd32;
        font-weight: 700;
        font-size: 1.3rem;
        line-height: 1;
    }

.feature-sublist {
    list-style: none;
    padding: 0;
    margin: 12px 0 16px 0;
    padding-left: 20px;
    padding-right: 12px;
    background: rgba(50, 205, 50, 0.04);
    border-left: 3px solid rgba(50, 205, 50, 0.4);
    padding-top: 12px;
    padding-bottom: 10px;
    border-radius: 0 4px 4px 0;
}

.feature-subitem {
    color: #c5c5c5;
    font-size: 0.87rem;
    line-height: 1.85;
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-weight: 400;
}

    .feature-subitem::before {
        content: '•';
        position: absolute;
        left: 8px;
        top: 7px;
        color: #32cd32;
        font-size: 1.2rem;
        line-height: 1;
    }

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-cards-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }

    .pricing-card-featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .pricing-container {
        padding: 40px 15px;
    }

    .pricing-title {
        font-size: 2.25rem;
    }

    .pricing-subtitle {
        font-size: 1.1rem;
    }

    .pricing-cards-wrapper {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .price-amount {
        font-size: 3rem;
    }
}

/*agreement-container*/
.agreement-container h1 {
    text-align: center;
    color: limegreen;
}

.agreement-container h2 {
    font-size: smaller;
    color: limegreen;
}

.agreement-container p {
    margin-bottom: 15px;
}

.agreement-container ul {
    list-style-type: disc;
    margin-left: 20px;
}

.agreement-container {
    max-width: 900px;
    margin: auto;
    margin-top: 20px;
}

    .agreement-container .text {
        background-color: black;
        font-family: Arial, sans-serif;
        line-height: 1.6;
        max-height: 400px;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

.accept-useragreement-checkbox {
    margin-top: 20px;
}


.shop-names-editor {
    width: 500px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.inline-header {
    display: inline-block;
}

.ml-10 {
    margin-left: 10px;
}

.display-none {
    display: none;
}

.quickbooks-connect-btn {
    display: inline-block;
    background-image: url('/images/Connect_to_QuickBooks_SVG/C2QB_green_btn_med_default.svg');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    text-decoration: none;
    width: 233px;
    height: 36px;
}

    .quickbooks-connect-btn:hover {
        background-image: url('/images/Connect_to_QuickBooks_SVG/C2QB_green_btn_med_hover.svg');
    }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
