/*# sourceMappingURL=custom.min.css.map */
.stat-pro {
    border-radius: 14px;
    border: none;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
    transition: .2s ease;
}

.stat-pro:hover {
    transform: translateY(-4px);
}

.card-header {
    background: transparent;
    border-bottom: 1px solid #f1f1f1;
    font-weight: 600;
}

.truncate {
    max-width: 150px;
    /* adjust width as needed */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.truncate:hover {
    cursor: pointer;
}

/* Login page */
.auth-left {
    position: relative;
    height: 100vh;
    /* Full height */
    overflow: visible;
    /* Shapes can go outside */
}

/* Image: fills the column completely */
.auth-left-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 0;
    z-index: 1;
}

/* Decorative shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    z-index: 2;
    animation: float 6s ease-in-out infinite alternate;
}

/* Individual shapes */
.shape-1 {
    width: 250px;
    height: 250px;
    background: rgba(0, 123, 255, 0.4);
    top: 5%;
    left: -60px;
}

.shape-2 {
    width: 180px;
    height: 180px;
    background: rgba(102, 16, 242, 0.4);
    bottom: 10%;
    right: -50px;
}

.shape-3 {
    width: 120px;
    height: 120px;
    background: rgba(255, 193, 7, 0.4);
    top: 40%;
    right: -40px;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: rgba(220, 53, 69, 0.4);
    bottom: 30%;
    left: -30px;
}

.shape-5 {
    width: 150px;
    height: 150px;
    background: rgba(40, 167, 69, 0.3);
    top: 60%;
    left: 20%;
}

.shape-6 {
    width: 200px;
    height: 200px;
    background: rgba(255, 193, 7, 0.3);
    top: 20%;
    left: 50%;
}

/* Floating animation */
@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) translateX(10px) rotate(10deg);
    }

    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
}

/* Right Column: Form Card */
.card-body {
    background: #fff;
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media(max-width: 1400px) {
    .auth-left {
        display: block;
        /* Show image on smaller screens */
        height: 50vh;
        /* Reduce height for mobile */
        margin-bottom: 2rem;
        /* Space below for form */
    }

    .shape-1,
    .shape-2,
    .shape-3,
    .shape-4,
    .shape-5,
    .shape-6 {
        transform: scale(0.6);
        /* Make shapes smaller */
    }
}

@media(max-width: 768px) {
    .auth-left {
        height: 40vh;
        /* Smaller height for phones */
    }

    .shape-1,
    .shape-2,
    .shape-3,
    .shape-4,
    .shape-5,
    .shape-6 {
        transform: scale(0.4);
        /* Tiny shapes for small screens */
    }
}

/* DESKTOP ONLY */
@media (min-width: 992px) {

    html[data-sidebar-size="sm"] .app-menu {
        width: 70px;
    }

    html[data-sidebar-size="sm"] .main-content {
        margin-left: 70px;
    }

    html[data-sidebar-size="lg"] .main-content {
        margin-left: 250px;
    }
}
/* MOBILE FIX */
@media (max-width: 991px) {
    .main-content {
        margin-left: 0 !important;
    }
}

/* FIX CONTENT CUT ISSUE (TABLET WIDTH) */
@media (min-width: 768px) and (max-width: 991.98px) {

    html[data-sidebar-size="sm"] .main-content {
        margin-left: 70px !important;
        width: calc(100% - 70px) !important;
    }

    html[data-sidebar-size="lg"] .main-content {
        margin-left: 250px !important;
        width: calc(100% - 250px) !important;
    }
}

.trial-banner {
    max-width: 500px;
    width: 100%;
    background: linear-gradient(135deg, #fff7e6, #fff1cc);
    border: 1px solid #ffd591;
    border-radius: 14px;
    padding: 14px 16px;
}

.trial-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trial-icon {
    font-size: 26px;
}

.trial-text {
    flex: 1;
}

.trial-text .title {
    font-size: 13px;
    font-weight: 600;
    color: #ad6800;
}

.trial-text .date {
    font-size: 14px;
    font-weight: 700;
    color: #613400;
}

.trial-text .countdown {
    font-size: 12px;
    color: #8c6d1f;
    margin-top: 2px;
}

.upgrade-btn {
    background: #faad14;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
}

.upgrade-btn:hover {
    background: #d48806;
    color: #fff;
}

/* ===== PLAN BADGES ===== */

.plan-chip .badge {
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
}

/* PAID – Premium Green Gradient */
.plan-chip .badge.bg-success {
    background: linear-gradient(135deg, #1abc9c, #16a085) !important;
    color: #fff;
}

/* TRIAL – Soft Blue Gradient */
.plan-chip .badge.bg-info {
    background: linear-gradient(135deg, #4facfe, #00c6ff) !important;
    color: #fff !important;
}

/* UNPAID – Warm Orange Gradient */
.plan-chip .badge.bg-warning {
    background: linear-gradient(135deg, #ff9f43, #ff6b6b) !important;
    color: #fff !important;
}

/* Hover effect */
.plan-chip .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

/* Icons slightly larger */
.plan-chip .badge i {
    font-size: 1rem;
}

/* Coupon Modal */
.coupon-modal{
    border-radius:18px;
    border:none;
    padding:10px;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.coupon-input{
    border-radius:10px;
    padding:12px;
    font-size:15px;
}

.coupon-input:focus{
    border-color:#52c41a;
    box-shadow:0 0 0 0.15rem rgba(82,196,26,0.2);
}

.coupon-btn{
    background: linear-gradient(90deg,#52c41a,#73d13d);
    border:none;
    font-weight:600;
    padding:10px;
    border-radius:10px;
    transition:0.3s;
}

.coupon-btn:hover{
    transform:translateY(-1px);
}

.skip-btn{
    border-radius:10px;
    font-weight:500;
    padding:10px;
}

#couponMsg{
    font-weight:500;
}

.selected-plan {
    border: 2px solid #52c41a !important;
    background: #f4fff0 !important;
}

/* QR link css */
@media (max-width: 576px) {

    .qr-link-row {
        flex-wrap: wrap;
    }

    .qr-link-row input {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .qr-link-row button {
        flex: 1;
    }
}

/* Centered card */
.review-card {
    max-width: 500px;
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    font-family: 'Inter', sans-serif;
}

/* Heading */
.review-card h4 {
    font-weight: 600;
    font-size: 1.5rem;
    color: #1F2937;
    margin-bottom: 12px;
}

.review-card p {
    color: #6B7280;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* Stars */
#star-selector {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

#star-selector .star {
    font-size: 2rem;
    cursor: pointer;
    color: #D1D5DB;
    /* Neutral gray */
    transition: color 0.2s ease;
}

#star-selector .star.selected,
#star-selector .star.hovered {
    color: #FBBF24;
    /* Amber */
}

/* Button */
.btn-primary-custom {
    background-color: #3B82F6;
    color: #ffffff;
    font-weight: 500;
    padding: 12px;
    border-radius: 8px;
    border: none;
    width: 100%;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-primary-custom:hover {
    background-color: #2563EB;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 576px) {
    .review-card {
        padding: 25px 20px;
    }

    #star-selector .star {
        font-size: 1.8rem;
    }
}

/* qr code css */
.business-name{
    max-width: 420px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
}

.qr-option {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0fff0;
    /* light green-ish background for unselected */
    border: 2px solid #52c41a;
    border-radius: 30px;
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: #52c41a;
}

.qr-option input {
    display: none;
}

/* selected state */
.qr-option.selected {
    background: #52c41a;
    color: #fff;
    box-shadow: 0 4px 10px rgba(82, 196, 26, 0.3);
}

/* notes section */
.notes-wrapper {
    height: 80vh;
}

/* Scroll areas */
.notes-list {
    overflow-y: auto;
}

.editor-area {
    height: 100%;
}

.editor-panel {
    display: flex;
    flex-direction: column;
}

/* MOBILE FIX */
@media (max-width: 768px) {

    .notes-wrapper {
        height: 100vh;
    }

    .notes-panel {
        display: block;
        height: 100%;
    }

    .editor-panel {
        display: none !important;
    }

    .show-editor .notes-panel {
        display: none !important;
    }

    .show-editor .editor-panel {
        display: flex !important;
        flex-direction: column;
        height: 100%;
    }

    .notes-list {
        height: calc(100% - 60px);
        overflow-y: auto;
    }
}

/* Desktop height fix */
.notes-wrapper {
    height: 80vh;
}

.notes-panel {
    height: 100%;
}

.notes-list {
    overflow-y: auto;
}



