@import '_content/Microsoft.AspNetCore.Components.QuickGrid/Microsoft.AspNetCore.Components.QuickGrid.boiwgh0w5b.bundle.scp.css';

/* /Components/AppointmentDialog.razor.rz.scp.css */
.appointment-dialog[b-d0kfz9umx0] { max-width:500px; margin:0 auto; }

.dialog-header[b-d0kfz9umx0] { background-color:#f8f9fa; padding:10px; border-bottom:1px solid #dee2e6; }
.dialog-header h3[b-d0kfz9umx0] { margin:0; color: #333; }

.dialog-body[b-d0kfz9umx0] { padding:20px; }

.customer-info[b-d0kfz9umx0], .services-info[b-d0kfz9umx0], .time-info[b-d0kfz9umx0] { margin-bottom:20px; }

.customer-info h4[b-d0kfz9umx0], .services-info h4[b-d0kfz9umx0], .time-info h4[b-d0kfz9umx0] { color: var(--brand-gold); margin-bottom:10px; }

.services-info ul[b-d0kfz9umx0] { list-style-type: disc; padding-left:20px; }

.dialog-footer[b-d0kfz9umx0] { background-color:#f8f9fa; padding:10px; border-top:1px solid #dee2e6; text-align:right; }

/* Use global .btn, bootstrap and .btn-gold */
/* /Components/Blog/ImageUploader.razor.rz.scp.css */
.image-uploader .drop-zone[b-ablyc2al6z]{
 border:2px dashed #ccc; padding:20px; text-align:center; background-color:#f9f9f9; transition: background-color .3s;
}
.image-preview[b-ablyc2al6z]{ position:relative; display:inline-block; }
.remove-btn[b-ablyc2al6z]{ position:absolute; top:5px; right:5px; }
/* /Components/Friseure/FriseurCustomerOrdersList.razor.rz.scp.css */
/* Summary bar */
.customer-orders-panel .orders-summary[b-kmb3o4puj7]{
 display:flex;justify-content:space-between;align-items:center;
 background:#f8f9fa;border:1px solid #e9ecef;border-radius:8px;padding:8px12px;margin-bottom:8px;
}
.customer-orders-panel .orders-summary i[b-kmb3o4puj7]{margin-right:6px;color:#6c757d}
.customer-orders-panel .orders-summary .summary-right[b-kmb3o4puj7]{display:flex;align-items:center;gap:6px}

/* Chips for services */
.customer-orders-panel .services .chip[b-kmb3o4puj7]{
 display:inline-block;background:#e9f5ff;color:#084298;border:1px solid #b6d9ff;border-radius:12px;padding:2px8px;margin:2px;font-size:.8rem;
}

/* Status badges */
.status-badge[b-kmb3o4puj7]{display:inline-block;padding:2px8px;border-radius:12px;font-size:.8rem;color:#fff}
.st-pending[b-kmb3o4puj7]{background:#ffc107;color:#212529}
.st-confirmed[b-kmb3o4puj7]{background:#17a2b8}
.st-processing[b-kmb3o4puj7]{background:#0d6efd}
.st-completed[b-kmb3o4puj7]{background:#28a745}
.st-cancelled[b-kmb3o4puj7]{background:#dc3545}
.st-blocked[b-kmb3o4puj7]{background:#6c757d}

/* Row highlight (from parent page styles remain compatible) */
.row-today[b-kmb3o4puj7]{box-shadow: inset4px00 #ffc10722}
.row-upcoming[b-kmb3o4puj7]{box-shadow: inset4px00 #0dcaf022}
/* /Components/Friseure/FriseurOrderDetails.razor.rz.scp.css */
/* Container */
.order-details[b-9dvoel73rd]{border:1px solid #e9ecef;border-radius:10px;padding:12px;background:#fff}
.order-details .od-header[b-9dvoel73rd]{display:flex;justify-content:space-between;align-items:flex-start;border-bottom:1px solid #f1f3f5;padding-bottom:8px;margin-bottom:10px}
.order-details .od-title[b-9dvoel73rd]{font-weight:600;color:#495057}
.order-details .od-datetime[b-9dvoel73rd]{font-size:1rem;color:#212529}
.order-details .od-rel[b-9dvoel73rd]{color:#6c757d;margin-left:6px}
.order-details .od-amount[b-9dvoel73rd]{text-align:right}
.order-details .od-total[b-9dvoel73rd]{font-size:1.1rem;font-weight:700}
.order-details .od-discount[b-9dvoel73rd]{font-size:.9rem;color:#dc3545}

.order-details .od-section[b-9dvoel73rd]{margin-top:10px}
.order-details .od-subtitle[b-9dvoel73rd]{font-weight:600;color:#495057;margin-bottom:6px}
.order-details .od-grid[b-9dvoel73rd]{display:grid;grid-template-columns:repeat(2, minmax(0,1fr));gap:6px}
.order-details .od-address[b-9dvoel73rd]{grid-column:1/-1}

.table[b-9dvoel73rd]{width:100%;border-collapse:collapse}
.table th[b-9dvoel73rd],.table td[b-9dvoel73rd]{padding:6px8px;border-bottom:1px solid #f1f3f5}
.table thead th[b-9dvoel73rd]{background:#f8f9fa;color:#495057}
.table.table-sm th[b-9dvoel73rd],.table.table-sm td[b-9dvoel73rd]{padding:4px6px}
.t-right[b-9dvoel73rd]{text-align:right}

.order-details.empty[b-9dvoel73rd]{padding:10px;color:#6c757d}
/* /Components/ImageGalleryControl.razor.rz.scp.css */
.image-gallery-control .gallery-grid[b-dco423adnw] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.image-gallery-control .gallery-item[b-dco423adnw] {
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.image-gallery-control .gallery-item:hover[b-dco423adnw] {
    border-color: #007bff;
}

.image-gallery-control .gallery-item.selected[b-dco423adnw] {
    border-color: #28a745;
}

.image-gallery-control .gallery-thumb[b-dco423adnw] {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.image-gallery-control .gallery-overlay[b-dco423adnw] {
    position: absolute;
    top: 5px;
    right: 5px;
    opacity: 0;
    transition: opacity 0.3s;
}

.image-gallery-control .gallery-item:hover .gallery-overlay[b-dco423adnw] {
    opacity: 1;
}

.image-gallery-control .selection-indicator[b-dco423adnw] {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
/* /Components/InspirationGallery.razor.rz.scp.css */


.masonry-grid[b-l62au982ar] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
}

.masonry-item[b-l62au982ar] {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}

    .masonry-item:hover[b-l62au982ar] {
        transform: scale(1.02);
    }

.gallery-image[b-l62au982ar] {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.item-overlay[b-l62au982ar] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.masonry-item:hover .item-overlay[b-l62au982ar] {
    transform: translateY(0);
}

.selected-overlay[b-l62au982ar] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.selected-content[b-l62au982ar] {
    background: white;
    border-radius: 15px;
    padding: 20px;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    display: flex;
    gap: 20px;
}

.selected-image[b-l62au982ar] {
    width: 300px;
    height: auto;
    border-radius: 10px;
}

.selected-details[b-l62au982ar] {
    flex: 1;
}

.btn-close[b-l62au982ar] {
    position: absolute;
    top: 10px;
    right: 10px;
}


/* /Components/Layout/AdminMenu.razor.rz.scp.css */
.admin-menu[b-v8je1sol5i] {
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.admin-menu .btn[b-v8je1sol5i] {
    padding: 0.35rem 0.75rem;
    font-size: 0.9rem;
    line-height: 1;
    border-radius: 0.375rem;
    transition: transform .12s ease, box-shadow .12s ease;
}

/* dezenter Hover-/Focus-Effekt */
.admin-menu .btn:hover[b-v8je1sol5i],
.admin-menu .btn:focus[b-v8je1sol5i] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    outline: none;
}

/* Dropdown styling */
.admin-menu .dropdown-menu[b-v8je1sol5i] {
    min-width: 12rem;
    border-radius: 0.375rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.06);
}

/* Hervorhebung für Admin-Aktionen */
.admin-menu .dropdown-item[b-v8je1sol5i] {
    padding: 0.5rem 1rem;
    color: var(--bs-body-color);
}

.admin-menu .dropdown-item:hover[b-v8je1sol5i] {
    background-color: rgba(212,175,55,0.06); /* subtile goldene Hervorhebung */
}

/* Kleine Bildschirme: kompakter Button */
@media (max-width: 576px) {
    .admin-menu .btn[b-v8je1sol5i] {
        padding: 0.25rem 0.5rem;
        font-size: 0.85rem;
    }
}
/* /Components/Layout/FriseurNavMenu.razor.rz.scp.css */
.section[b-q4q2nnkl04] { padding: 8px 0; margin: 8px 0; border-radius: 6px; }
.section__title[b-q4q2nnkl04] { font-size: .85rem; font-weight: 700; opacity: .75; padding: 4px 12px; text-transform: uppercase; }
/* Free vs Protected backgrounds */
.section--free[b-q4q2nnkl04] { background: rgba(33,37,41,.05); }
.section--protected[b-q4q2nnkl04] { background: linear-gradient(180deg, rgba(212,175,55,.12), rgba(212,175,55,.06)); border: 1px solid rgba(212,175,55,.25); }
.section--dev[b-q4q2nnkl04] { background: rgba(220,53,69,.08); border: 1px dashed rgba(220,53,69,.35); }
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-m0y47s2dqb] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-m0y47s2dqb] {
    flex: 1;
}

.sidebar[b-m0y47s2dqb] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-m0y47s2dqb] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-m0y47s2dqb]  a, .top-row[b-m0y47s2dqb]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-m0y47s2dqb]  a:hover, .top-row[b-m0y47s2dqb]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-m0y47s2dqb]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-m0y47s2dqb] {
        justify-content: space-between;
    }

    .top-row[b-m0y47s2dqb]  a, .top-row[b-m0y47s2dqb]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-m0y47s2dqb] {
        flex-direction: row;
    }

    .sidebar[b-m0y47s2dqb] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-m0y47s2dqb] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-m0y47s2dqb]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-m0y47s2dqb], article[b-m0y47s2dqb] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-m0y47s2dqb] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-m0y47s2dqb] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-iwm6p5sc74],
.components-reconnect-repeated-attempt-visible[b-iwm6p5sc74],
.components-reconnect-failed-visible[b-iwm6p5sc74],
.components-pause-visible[b-iwm6p5sc74],
.components-resume-failed-visible[b-iwm6p5sc74],
.components-rejoining-animation[b-iwm6p5sc74] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-iwm6p5sc74],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-iwm6p5sc74],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-iwm6p5sc74],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-iwm6p5sc74],
#components-reconnect-modal.components-reconnect-retrying[b-iwm6p5sc74],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-iwm6p5sc74],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-iwm6p5sc74],
#components-reconnect-modal.components-reconnect-failed[b-iwm6p5sc74],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-iwm6p5sc74] {
    display: block;
}


#components-reconnect-modal[b-iwm6p5sc74] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-iwm6p5sc74 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-iwm6p5sc74 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-iwm6p5sc74 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-iwm6p5sc74]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-iwm6p5sc74 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-iwm6p5sc74 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-iwm6p5sc74 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-iwm6p5sc74 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-iwm6p5sc74] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-iwm6p5sc74] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-iwm6p5sc74] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-iwm6p5sc74] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-iwm6p5sc74] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-iwm6p5sc74] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-iwm6p5sc74] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-iwm6p5sc74 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-iwm6p5sc74] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-iwm6p5sc74 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/OpeningHours.razor.rz.scp.css */
.opening-hours-list[b-03o0ngpwd0]{margin:0;padding:0;}
.opening-hours-row[b-03o0ngpwd0]{gap:.75rem;}
.opening-day-label[b-03o0ngpwd0]{min-width:6.5rem;font-weight:500;}
.opening-time-range[b-03o0ngpwd0]{white-space:nowrap;}
/* /Components/Pages/Account/RegisterFriseur.razor.rz.scp.css */
.register-friseur-container[b-dwc261forj]{ min-height:100vh; background: linear-gradient(135deg,#f5f7fa0%,#c3cfe2100%); padding:50px0; }
.register-card[b-dwc261forj]{ background:#fff; padding:40px; border-radius:15px; box-shadow:010px30px rgba(0,0,0,.1); }
.register-form h4[b-dwc261forj]{ color:#333; border-bottom:2px solid #667eea; padding-bottom:10px; }
:where(.register-form) .btn-primary[b-dwc261forj]{ background: linear-gradient(45deg,#667eea,#764ba2); border:none; }
:where(.register-form) .btn-primary:hover[b-dwc261forj]{ background: linear-gradient(45deg,#5a6fd8,#6a4190); }
/* /Components/Pages/FriseurLanding.razor.rz.scp.css */
.friseur-landing[b-31i1zz2qzl]{ font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
.hero-section[b-31i1zz2qzl]{ background: linear-gradient(135deg,#667eea0%,#764ba2100%); color:#fff; padding:100px0; text-align:center; }
.hero-title[b-31i1zz2qzl]{ font-size:3rem; font-weight:bold; margin-bottom:20px; }
.hero-subtitle[b-31i1zz2qzl]{ font-size:1.5rem; margin-bottom:40px; opacity:.9; }
.cta-button[b-31i1zz2qzl]{ background: linear-gradient(45deg,#ff6b6b,#4ecdc4); border:none; padding:15px30px; font-size:1.2rem; border-radius:50px; text-decoration:none; color:#fff; transition: transform .3s; }
.cta-button:hover[b-31i1zz2qzl]{ transform: scale(1.05); color:#fff; }
.why-section[b-31i1zz2qzl]{ background-color:#f8f9fa; }
.section-title[b-31i1zz2qzl]{ color:#333; font-weight:bold; }
.feature-card[b-31i1zz2qzl]{ background:#fff; padding:30px; border-radius:15px; box-shadow:04px15px rgba(0,0,0,.1); text-align:center; height:100%; transition: transform .3s; }
.feature-card:hover[b-31i1zz2qzl]{ transform: translateY(-5px); }
.feature-icon[b-31i1zz2qzl]{ font-size:3rem; color:#667eea; margin-bottom:20px; }
.feature-card h5[b-31i1zz2qzl]{ color:#333; margin-bottom:15px; }
.pricing-section[b-31i1zz2qzl]{ background: linear-gradient(135deg,#f093fb0%,#f5576c100%); color:#fff; }
.pricing-card[b-31i1zz2qzl]{ background: rgba(255,255,255,.1); padding:40px; border-radius:20px; max-width:600px; margin:0 auto; backdrop-filter: blur(10px); }
.price-highlight[b-31i1zz2qzl]{ font-size:2rem; margin:20px0; }
.free-text[b-31i1zz2qzl]{ display:block; font-size:1.2rem; }
.price[b-31i1zz2qzl]{ display:block; font-weight:bold; font-size:3rem; }
.pricing-example[b-31i1zz2qzl]{ font-style: italic; margin:20px0; }
.cta-section[b-31i1zz2qzl]{ background: linear-gradient(135deg,#4facfe0%,#00f2fe100%); color:#fff; text-align:center; }
.cta-section h2[b-31i1zz2qzl]{ margin-bottom:20px; }
@media (max-width:768px){ .hero-title[b-31i1zz2qzl]{ font-size:2rem; } .hero-subtitle[b-31i1zz2qzl]{ font-size:1.2rem; } .feature-card[b-31i1zz2qzl]{ margin-bottom:20px; } }
/* /Components/Pages/LandingPages/Landing.razor.rz.scp.css */
:root[b-9inzvdsml9]{
  /* Brand tokens */
  --suada-primary: #D4AF37;
  --suada-on-primary: #000000;
  --suada-accent: #0f172a;
  --suada-bg: #ffffff;
  --suada-surface: #ffffff;
  --suada-muted: #6b7280;

  /* Layout */
  --lp-max-width: 1100px;
  --radius: 10px;
  --g: 1rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;

  /* Typography */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  --h1-size: clamp(1.6rem, 3.4vw, 2.6rem);
  --h2-size: clamp(1.25rem, 2.4vw, 1.6rem);
}

/* Basic reset & utilities */
*[b-9inzvdsml9]{box-sizing:border-box}
html[b-9inzvdsml9],body[b-9inzvdsml9]{height:100%}
body[b-9inzvdsml9]{
  margin:0;
  font-family:var(--font-sans);
  background:var(--suada-bg);
  color:var(--suada-accent);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
  -ms-text-size-adjust:100%;
  -webkit-text-size-adjust:100%;
}
.container[b-9inzvdsml9]{
  max-width:var(--lp-max-width);
  margin:0 auto;
  padding:0 1rem;
}

/* Header */
.lp-header[b-9inzvdsml9]{
  position:sticky;
  top:0;
  z-index:60;
  background:linear-gradient(to bottom, rgba(255,255,255,0.82), rgba(255,255,255,0.6));
  backdrop-filter: blur(6px);
  border-bottom:1px solid rgba(15,23,42,0.04);
}
.lp-header .container[b-9inzvdsml9]{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:var(--space-md);
  padding:0.6rem 0;
}
.logo[b-9inzvdsml9]{
  font-weight:700;
  color:var(--suada-accent);
  text-decoration:none;
  font-size:1.05rem;
}
.nav[b-9inzvdsml9]{
  display:flex;
  align-items:center;
  gap:0.75rem;
}
.nav a[b-9inzvdsml9]{
  color:var(--suada-accent);
  text-decoration:none;
  padding:0.35rem 0.6rem;
  border-radius:8px;
  font-size:0.95rem;
}
.nav a:focus[b-9inzvdsml9],
.nav a:hover[b-9inzvdsml9]{
  outline:none;
  background:rgba(212,175,55,0.08);
}
.nav .cta[b-9inzvdsml9]{
  background:var(--suada-primary);
  color:var(--suada-on-primary);
  padding:0.45rem 0.8rem;
  border-radius:8px;
  box-shadow: 0 6px 18px rgba(16,24,40,0.08);
  text-decoration:none;
}
@media (max-width:720px){
  .nav[b-9inzvdsml9]{display:none} /* mobile: toggle via component later */
}

/* Hero */
.hero[b-9inzvdsml9]{
  padding:var(--space-lg) 0;
  background:linear-gradient(180deg, var(--suada-bg) 58%, #fbfbfb);
}
.hero-inner[b-9inzvdsml9]{
  display:flex;
  gap:2rem;
  align-items:center;
  flex-wrap:wrap;
  padding:var(--space-md) 0;
}
.hero-copy[b-9inzvdsml9]{flex:1;min-width:260px}
.hero h1[b-9inzvdsml9]{
  margin:0 0 0.5rem;
  font-size:var(--h1-size);
  line-height:1.05;
  color:var(--suada-accent);
}
.hero p[b-9inzvdsml9]{
  margin:0 0 1rem;
  color:#374151;
  max-width:48ch;
}
.hero-actions[b-9inzvdsml9]{display:flex;gap:0.75rem;flex-wrap:wrap}
.btn[b-9inzvdsml9]{
  border:0;
  padding:0.6rem 1rem;
  border-radius:10px;
  cursor:pointer;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.btn-primary[b-9inzvdsml9]{
  background:var(--suada-primary);
  color:var(--suada-on-primary);
}
.btn-ghost[b-9inzvdsml9]{
  background:transparent;
  color:var(--suada-accent);
  border:1px solid rgba(15,23,42,0.06);
}
.hero-trust[b-9inzvdsml9]{margin-top:0.6rem;color:var(--suada-muted);font-size:0.95rem}

/* Hero media placeholder */
.hero-media[b-9inzvdsml9]{width:380px;height:260px;border-radius:12px;overflow:hidden;background:#f3f4f6;display:flex;align-items:center;justify-content:center}
.hero-media img[b-9inzvdsml9]{width:100%;height:100%;object-fit:cover;display:block}

/* Sections */
.section[b-9inzvdsml9]{padding:2.5rem 0}
.section h2[b-9inzvdsml9]{font-size:var(--h2-size);margin:0 0 1rem;color:var(--suada-accent)}

/* Grid utilities */
.grid[b-9inzvdsml9]{display:grid;gap:1rem}
.features[b-9inzvdsml9]{grid-template-columns:repeat(auto-fit,minmax(200px,1fr))}
.card[b-9inzvdsml9]{
  background:var(--suada-surface);
  border-radius:var(--radius);
  padding:1rem;
  box-shadow:0 6px 18px rgba(16,24,40,0.06);
  border:1px solid rgba(15,23,42,0.02);
}
.gallery[b-9inzvdsml9]{grid-template-columns:repeat(auto-fit,minmax(140px,1fr))}
.thumb[b-9inzvdsml9]{height:140px;background:#f8fafc;border-radius:8px;display:flex;align-items:center;justify-content:center;color:#9ca3af}

/* Testimonials */
.testimonial[b-9inzvdsml9]{
  background:linear-gradient(180deg,#fff,#fbfbfb);
  padding:1rem 1.25rem;
  border-radius:8px;
  border-left:4px solid var(--suada-primary);
  box-shadow:0 6px 18px rgba(16,24,40,0.04);
  margin:0.5rem 0;
}
.testimonial p[b-9inzvdsml9]{margin:0 0.5rem 0.5rem;color:#374151}
.testimonial cite[b-9inzvdsml9]{color:var(--suada-muted);font-size:0.95rem}

/* Contact form */
.contact .form-grid[b-9inzvdsml9]{
  display:grid;
  gap:1rem;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}
.input[b-9inzvdsml9]{
  width:100%;
  padding:0.6rem;
  border:1px solid rgba(15,23,42,0.06);
  border-radius:8px;
  background:#fff;
  color:var(--suada-accent);
  font-size:0.95rem;
}
.input:focus[b-9inzvdsml9]{
  outline:3px solid rgba(212,175,55,0.18);
  border-color:var(--suada-primary);
}
.form-actions[b-9inzvdsml9]{margin-top:1rem}
.result[b-9inzvdsml9]{margin-top:0.75rem;color:var(--suada-primary);font-weight:600}

/* Footer */
.lp-footer[b-9inzvdsml9]{padding:1.25rem 0;background:#fafafa;color:var(--suada-muted);border-top:1px solid rgba(15,23,42,0.03)}

/* Accessibility - focus visible */
:focus[b-9inzvdsml9]{outline:none}
a:focus-visible[b-9inzvdsml9],
button:focus-visible[b-9inzvdsml9],
input:focus-visible[b-9inzvdsml9],
textarea:focus-visible[b-9inzvdsml9]{
  outline:3px solid rgba(212,175,55,0.18);
  outline-offset:2px;
  border-radius:8px;
}

/* Utility */
.hidden[b-9inzvdsml9]{display:none!important}

/* Responsive tweaks */
@media (max-width:960px){
  .hero-media[b-9inzvdsml9]{width:320px;height:200px}
  .hero-inner[b-9inzvdsml9]{gap:1rem}
}
@media (max-width:720px){
  .hero-inner[b-9inzvdsml9]{flex-direction:column-reverse;align-items:flex-start}
  .hero-media[b-9inzvdsml9]{width:100%;height:220px}
  .hero h1[b-9inzvdsml9]{font-size:1.6rem}
  .container[b-9inzvdsml9]{padding:0 0.75rem}
  .card[b-9inzvdsml9]{padding:0.75rem}
  .lp-header .container[b-9inzvdsml9]{gap:0.5rem}
}

/* Performance hint class for deferred images */
.lazy-img[b-9inzvdsml9]{opacity:0;transition:opacity .35s ease-in}
.lazy-img.loaded[b-9inzvdsml9]{opacity:1}

/* Respect reduced motion */
@media (prefers-reduced-motion:reduce){
  *[b-9inzvdsml9]{transition:none!important;animation:none!important}
}
/* /Components/Pages/Views/Customers/CustomerDashboard.razor.rz.scp.css */
body[b-k4vtlcx7tv] {
}
/* /Components/Pages/Views/Customers/CustomerFriseurListView.razor.rz.scp.css */
/* CustomerFriseurListView.razor.css */

.friseur-list-container[b-s9s7ox71jk] {
    padding: 20px;
    background-color: #f8f9fa;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.friseur-list-title[b-s9s7ox71jk] {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    animation: fadeIn-b-s9s7ox71jk 1s ease-in;
}

.friseur-grid[b-s9s7ox71jk] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.friseur-card[b-s9s7ox71jk] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideUp-b-s9s7ox71jk 0.6s ease-out;
}

.friseur-card:hover[b-s9s7ox71jk] {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.2);
}

.friseur-header[b-s9s7ox71jk] {
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.friseur-header h5[b-s9s7ox71jk] {
    color: #333;
    margin: 0;
    font-size: 1.2rem;
}

.friseur-business[b-s9s7ox71jk] {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.friseur-details p[b-s9s7ox71jk] {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #555;
}

.friseur-actions[b-s9s7ox71jk] {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.btn-gold-small[b-s9s7ox71jk] {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.btn-gold-small:hover[b-s9s7ox71jk] {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.5);
}

/* Animations */
@keyframes fadeIn-b-s9s7ox71jk {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp-b-s9s7ox71jk {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .friseur-grid[b-s9s7ox71jk] {
        grid-template-columns: 1fr;
    }
    .friseur-actions[b-s9s7ox71jk] {
        flex-direction: column;
    }
    .friseur-list-title[b-s9s7ox71jk] {
        font-size: 2rem;
    }
}
/* /Components/Pages/Views/Customers/CustomerFriseurSearchView.razor.rz.scp.css */
/* CustomerFriseurSearchView.razor.css */

.friseur-search-container[b-2v3v43rs5y] {
    padding: 20px;
    background-color: #f8f9fa;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.friseur-search-title[b-2v3v43rs5y] {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    animation: fadeIn-b-2v3v43rs5y 1s ease-in;
}

.search-filters[b-2v3v43rs5y] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
    animation: slideUp-b-2v3v43rs5y 0.6s ease-out;
}

.filter-row[b-2v3v43rs5y] {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.search-input[b-2v3v43rs5y] {
    flex: 1;
    min-width: 200px;
    padding: 10px;
    border: 2px solid #D4AF37;
    border-radius: 8px;
    font-size: 1rem;
}

.filter-select[b-2v3v43rs5y] {
    padding: 10px;
    border: 2px solid #D4AF37;
    border-radius: 8px;
    background: white;
    color: #333;
}

.price-input[b-2v3v43rs5y], .distance-input[b-2v3v43rs5y] {
    width: 80px;
    padding: 8px;
    border: 2px solid #D4AF37;
    border-radius: 8px;
}

.btn-gold[b-2v3v43rs5y] {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover[b-2v3v43rs5y] {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(212, 175, 55, 0.5);
}

.friseurs-grid[b-2v3v43rs5y] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.friseur-card[b-2v3v43rs5y] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideUp-b-2v3v43rs5y 0.6s ease-out;
}

.friseur-card:hover[b-2v3v43rs5y] {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.2);
}

.friseur-header[b-2v3v43rs5y] {
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.friseur-header h5[b-2v3v43rs5y] {
    margin: 0;
    color: #333;
    font-size: 1.2rem;
}

.friseur-business[b-2v3v43rs5y] {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.friseur-details p[b-2v3v43rs5y] {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #555;
}

.friseur-actions[b-2v3v43rs5y] {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.btn-gold-small[b-2v3v43rs5y] {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.btn-gold-small:hover[b-2v3v43rs5y] {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.5);
}

/* Animations */
@keyframes fadeIn-b-2v3v43rs5y {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp-b-2v3v43rs5y {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .filter-row[b-2v3v43rs5y] {
        flex-direction: column;
        align-items: stretch;
    }
    .search-input[b-2v3v43rs5y] {
        min-width: auto;
    }
    .friseurs-grid[b-2v3v43rs5y] {
        grid-template-columns: 1fr;
    }
    .friseur-search-title[b-2v3v43rs5y] {
        font-size: 2rem;
    }
}
/* /Components/Pages/Views/Customers/CustomerPastAppointmentListView.razor.rz.scp.css */
/* CustomerPastAppointmentListView.razor.css */

.past-appointments-container[b-vzle061v72] {
    padding: 20px;
    background-color: #f8f9fa;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.past-appointments-title[b-vzle061v72] {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    animation: fadeIn-b-vzle061v72 1s ease-in;
}

.appointments-list[b-vzle061v72] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.appointment-card[b-vzle061v72] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideUp-b-vzle061v72 0.6s ease-out;
}

.appointment-card:hover[b-vzle061v72] {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.2);
}

.appointment-header[b-vzle061v72] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.appointment-header h5[b-vzle061v72] {
    margin: 0;
    color: #333;
    font-size: 1.2rem;
}

.appointment-date[b-vzle061v72] {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
}

.appointment-details p[b-vzle061v72] {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #555;
}

.status-pending[b-vzle061v72] { color: #ffc107; }
.status-confirmed[b-vzle061v72] { color: #28a745; }
.status-inprogress[b-vzle061v72] { color: #007bff; }
.status-completed[b-vzle061v72] { color: #6c757d; }
.status-cancelled[b-vzle061v72] { color: #dc3545; }
.status-noshow[b-vzle061v72] { color: #fd7e14; }

.appointment-actions[b-vzle061v72] {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-gold-small[b-vzle061v72] {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.btn-gold-small:hover[b-vzle061v72] {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.5);
}

/* Animations */
@keyframes fadeIn-b-vzle061v72 {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp-b-vzle061v72 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .appointment-header[b-vzle061v72] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .appointment-actions[b-vzle061v72] {
        justify-content: center;
    }
    .past-appointments-title[b-vzle061v72] {
        font-size: 2rem;
    }
}
/* /Components/Pages/Views/Customers/CustomerReviewSubmitView.razor.rz.scp.css */
/* CustomerReviewSubmitView.razor.css */

.review-submit-container[b-4hg1jzu51v] {
    padding: 20px;
    background-color: #f8f9fa;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.review-submit-title[b-4hg1jzu51v] {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    animation: fadeIn-b-4hg1jzu51v 1s ease-in;
}

.appointment-selection[b-4hg1jzu51v] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
    animation: slideUp-b-4hg1jzu51v 0.6s ease-out;
}

.appointment-selection h3[b-4hg1jzu51v] {
    color: #333;
    margin-bottom: 15px;
}

.form-select[b-4hg1jzu51v] {
    width: 100%;
    padding: 10px;
    border: 2px solid #D4AF37;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 1rem;
}

.review-form[b-4hg1jzu51v] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    animation: slideUp-b-4hg1jzu51v 0.8s ease-out;
}

.review-form h3[b-4hg1jzu51v] {
    color: #333;
    margin-bottom: 20px;
}

.rating-section[b-4hg1jzu51v] {
    margin-bottom: 20px;
}

.rating-section label[b-4hg1jzu51v] {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #555;
}

.star-rating[b-4hg1jzu51v] {
    display: flex;
    gap: 5px;
}

.star[b-4hg1jzu51v] {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
}

.star.selected[b-4hg1jzu51v], .star:hover[b-4hg1jzu51v] {
    color: #FFD700;
}

.form-group[b-4hg1jzu51v] {
    margin-bottom: 20px;
}

.form-group label[b-4hg1jzu51v] {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.form-control[b-4hg1jzu51v] {
    width: 100%;
    padding: 10px;
    border: 2px solid #D4AF37;
    border-radius: 8px;
    font-size: 1rem;
    resize: vertical;
}

.recommendation-options[b-4hg1jzu51v] {
    display: flex;
    gap: 20px;
}

.recommendation-options label[b-4hg1jzu51v] {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-gold[b-4hg1jzu51v] {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover:not(:disabled)[b-4hg1jzu51v] {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(212, 175, 55, 0.5);
}

.btn-gold:disabled[b-4hg1jzu51v] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Animations */
@keyframes fadeIn-b-4hg1jzu51v {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp-b-4hg1jzu51v {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .recommendation-options[b-4hg1jzu51v] {
        flex-direction: column;
        gap: 10px;
    }
    .star-rating[b-4hg1jzu51v] {
        justify-content: center;
    }
    .review-submit-title[b-4hg1jzu51v] {
        font-size: 2rem;
    }
}
/* /Components/Pages/Views/Customers/CustomerUpcomingAppointmentListView.razor.rz.scp.css */
/* CustomerUpcomingAppointmentListView.razor.css */

.upcoming-appointments-container[b-l6z8a59x17] {
    padding: 20px;
    background-color: #f8f9fa;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.upcoming-appointments-title[b-l6z8a59x17] {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    animation: fadeIn-b-l6z8a59x17 1s ease-in;
}

.appointments-list[b-l6z8a59x17] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.appointment-card[b-l6z8a59x17] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideUp-b-l6z8a59x17 0.6s ease-out;
}

.appointment-card:hover[b-l6z8a59x17] {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.2);
}

.appointment-header[b-l6z8a59x17] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.appointment-header h5[b-l6z8a59x17] {
    margin: 0;
    color: #333;
    font-size: 1.2rem;
}

.appointment-date[b-l6z8a59x17] {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
}

.appointment-details p[b-l6z8a59x17] {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #555;
}

.status-pending[b-l6z8a59x17] { color: #ffc107; }
.status-confirmed[b-l6z8a59x17] { color: #28a745; }
.status-inprogress[b-l6z8a59x17] { color: #007bff; }
.status-completed[b-l6z8a59x17] { color: #6c757d; }
.status-cancelled[b-l6z8a59x17] { color: #dc3545; }
.status-noshow[b-l6z8a59x17] { color: #fd7e14; }

.appointment-actions[b-l6z8a59x17] {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-gold-small[b-l6z8a59x17] {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.btn-gold-small:hover[b-l6z8a59x17] {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.5);
}

/* Animations */
@keyframes fadeIn-b-l6z8a59x17 {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp-b-l6z8a59x17 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .appointment-header[b-l6z8a59x17] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .appointment-actions[b-l6z8a59x17] {
        justify-content: center;
    }
    .upcoming-appointments-title[b-l6z8a59x17] {
        font-size: 2rem;
    }
}
/* /Components/Pages/Views/Friseure/FriseurAppointmentCalendarView.razor.rz.scp.css */
.e-schedule .e-non-working-hours[b-ylfcxfsfan] {
    background-color: #f0f0f0; /* Helleres Grau oder beliebige Farbe */
    opacity: 0.6; /* Optional: leicht transparent */
}

/* FriseurAppointmentCalendarView.razor.css */

.calendar-container[b-ylfcxfsfan] {
    padding: 20px;
    background-color: #f8f9fa;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.calendar-title[b-ylfcxfsfan] {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    animation: fadeIn-b-ylfcxfsfan 1s ease-in;
}

.calendar-header[b-ylfcxfsfan] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.calendar-header h2[b-ylfcxfsfan] {
    margin: 0;
    color: #333;
}

.btn-gold[b-ylfcxfsfan] {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover[b-ylfcxfsfan] {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(212, 175, 55, 0.5);
}

.calendar-grid[b-ylfcxfsfan] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: slideUp-b-ylfcxfsfan 0.8s ease-out;
}

.day-header[b-ylfcxfsfan] {
    text-align: center;
    font-weight: bold;
    color: #D4AF37;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

.day[b-ylfcxfsfan] {
    aspect-ratio: 1;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.day:hover[b-ylfcxfsfan] {
    background-color: #f0f0f0;
    transform: scale(1.02);
}

.day.empty[b-ylfcxfsfan] {
    background-color: #fafafa;
    cursor: default;
}

.day.has-appointments[b-ylfcxfsfan] {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-color: #D4AF37;
}

.day-number[b-ylfcxfsfan] {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.appointments-preview[b-ylfcxfsfan] {
    font-size: 0.75rem;
    color: #555;
}

.appointment-preview[b-ylfcxfsfan] {
    margin-bottom: 2px;
    padding: 2px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 3px;
}

.more-appointments[b-ylfcxfsfan] {
    font-style: italic;
    color: #777;
}

.day-details[b-ylfcxfsfan] {
    margin-top: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn-b-ylfcxfsfan 0.5s ease-in;
}

.appointment-list[b-ylfcxfsfan] {
    list-style: none;
    padding: 0;
}

.appointment-item[b-ylfcxfsfan] {
    padding: 10px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-pending[b-ylfcxfsfan] { color: #ffc107; }
.status-confirmed[b-ylfcxfsfan] { color: #28a745; }
.status-inprogress[b-ylfcxfsfan] { color: #007bff; }
.status-completed[b-ylfcxfsfan] { color: #6c757d; }
.status-cancelled[b-ylfcxfsfan] { color: #dc3545; }
.status-noshow[b-ylfcxfsfan] { color: #fd7e14; }

/* Animations */
@keyframes fadeIn-b-ylfcxfsfan {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp-b-ylfcxfsfan {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .calendar-grid[b-ylfcxfsfan] {
        grid-template-columns: repeat(7, 1fr);
        font-size: 0.9rem;
    }
    .calendar-header[b-ylfcxfsfan] {
        flex-direction: column;
        gap: 10px;
    }
    .calendar-title[b-ylfcxfsfan] {
        font-size: 2rem;
    }
}

/* Hide Edit Event header and default footer buttons in SfSchedule editor */
.e-schedule-dialog .e-dlg-header[b-ylfcxfsfan] {
    display: none;
}

.e-schedule-dialog .e-footer-content[b-ylfcxfsfan] {
    display: none;
}

/* Event base styles */
.e-schedule .e-appointment.sg-booking[b-ylfcxfsfan] {
 background: linear-gradient(135deg, #4caf50, #2e7d32);
 color: #fff;
 border: none;
}

/* Generic blocker styling */
.e-schedule .e-appointment.sg-blocker[b-ylfcxfsfan] {
 background: linear-gradient(135deg, #0b3d91, #062a63);
 color: #fff;
 border: none;
 opacity: .95;
}

/* Lunch (blocker sub-type) */
.e-schedule .e-appointment.sg-lunch[b-ylfcxfsfan] {
 background: linear-gradient(135deg, #263238, #0b3d91);
}

/* Optional hover focus tweaks */
.e-schedule .e-appointment.sg-blocker:hover[b-ylfcxfsfan],
.e-schedule .e-appointment.sg-booking:hover[b-ylfcxfsfan] {
 filter: brightness(1.05);
}
/* /Components/Pages/Views/Friseure/FriseurAppointmentListView.razor.rz.scp.css */
/* FriseurAppointmentListView.razor.css */

.appointment-list-container[b-htmxn2sq42] {
    padding: 20px;
    background-color: #f8f9fa;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.appointment-list-title[b-htmxn2sq42] {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    animation: fadeIn-b-htmxn2sq42 1s ease-in;
}

.appointment-table-wrapper[b-htmxn2sq42] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    animation: slideUp-b-htmxn2sq42 0.8s ease-out;
}

.appointment-table[b-htmxn2sq42] {
    width: 100%;
    border-collapse: collapse;
}

.appointment-table th[b-htmxn2sq42] {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #ccc;
}

.appointment-table td[b-htmxn2sq42] {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: #555;
}

.appointment-row:hover[b-htmxn2sq42] {
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.status-badge[b-htmxn2sq42] {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
}

.status-pending[b-htmxn2sq42] {
    background-color: #ffc107;
    color: #212529;
}

.status-confirmed[b-htmxn2sq42] {
    background-color: #28a745;
    color: white;
}

.status-inprogress[b-htmxn2sq42] {
    background-color: #007bff;
    color: white;
}

.status-completed[b-htmxn2sq42] {
    background-color: #6c757d;
    color: white;
}

.status-cancelled[b-htmxn2sq42] {
    background-color: #dc3545;
    color: white;
}

.status-noshow[b-htmxn2sq42] {
    background-color: #fd7e14;
    color: white;
}

.btn-gold-small[b-htmxn2sq42] {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    margin-right: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.btn-gold-small:hover[b-htmxn2sq42] {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.5);
}

/* Animations */
@keyframes fadeIn-b-htmxn2sq42 {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp-b-htmxn2sq42 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .appointment-table th[b-htmxn2sq42],
    .appointment-table td[b-htmxn2sq42] {
        padding: 10px;
        font-size: 0.9rem;
    }
    .appointment-list-title[b-htmxn2sq42] {
        font-size: 2rem;
    }
}
/* /Components/Pages/Views/Friseure/FriseurAppointmentWeekView.razor.rz.scp.css */
/* FriseurAppointmentWeekView.razor.css */

.week-view-container[b-tgzfavamky] {
    padding: 20px;
    background-color: #f8f9fa;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.week-view-title[b-tgzfavamky] {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    animation: fadeIn-b-tgzfavamky 1s ease-in;
}

.week-navigation[b-tgzfavamky] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.week-navigation h2[b-tgzfavamky] {
    margin: 0;
    color: #333;
}

.btn-gold[b-tgzfavamky] {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover[b-tgzfavamky] {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(212, 175, 55, 0.5);
}

.week-grid[b-tgzfavamky] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.day-column[b-tgzfavamky] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: slideUp-b-tgzfavamky 0.8s ease-out;
}

.day-header[b-tgzfavamky] {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: white;
    padding: 15px;
    text-align: center;
    position: relative;
}

.day-header.today[b-tgzfavamky] {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
}

.today-badge[b-tgzfavamky] {
    position: absolute;
    top: 5px;
    right: 5px;
    background: white;
    color: #D4AF37;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: bold;
}

.appointments-list[b-tgzfavamky] {
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
}

.appointment-card[b-tgzfavamky] {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    border-left: 4px solid #D4AF37;
    transition: all 0.3s ease;
}

.appointment-card:hover[b-tgzfavamky] {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.appointment-time[b-tgzfavamky] {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.appointment-customer[b-tgzfavamky] {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 2px;
}

.appointment-service[b-tgzfavamky] {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 5px;
}

.appointment-status[b-tgzfavamky] {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.status-pending[b-tgzfavamky] { color: #ffc107; }
.status-confirmed[b-tgzfavamky] { color: #28a745; }
.status-inprogress[b-tgzfavamky] { color: #007bff; }
.status-completed[b-tgzfavamky] { color: #6c757d; }
.status-cancelled[b-tgzfavamky] { color: #dc3545; }
.status-noshow[b-tgzfavamky] { color: #fd7e14; }

.appointment-actions[b-tgzfavamky] {
    margin-top: 10px;
}

.btn-small[b-tgzfavamky] {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-small:hover[b-tgzfavamky] {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    transform: scale(1.05);
}

.no-appointments[b-tgzfavamky] {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 20px;
}

.week-summary[b-tgzfavamky] {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn-b-tgzfavamky 0.5s ease-in;
}

.week-summary h3[b-tgzfavamky] {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.summary-stats[b-tgzfavamky] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.stat-item[b-tgzfavamky] {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
}

.stat-number[b-tgzfavamky] {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #D4AF37;
}

.stat-label[b-tgzfavamky] {
    font-size: 0.9rem;
    color: #666;
}

/* Animations */
@keyframes fadeIn-b-tgzfavamky {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp-b-tgzfavamky {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .week-grid[b-tgzfavamky] {
        grid-template-columns: 1fr;
    }
    .week-navigation[b-tgzfavamky] {
        flex-direction: column;
        gap: 10px;
    }
    .week-view-title[b-tgzfavamky] {
        font-size: 2rem;
    }
    .summary-stats[b-tgzfavamky] {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* /Components/Pages/Views/Friseure/FriseurCustomerListView.razor.rz.scp.css */
/* FriseurCustomerListView.razor.css */

.customer-list-container[b-y6sbu1rihv] {
    padding: 20px;
    background-color: #f8f9fa;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.customer-list-title[b-y6sbu1rihv] {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    animation: fadeIn-b-y6sbu1rihv 1s ease-in;
}

.customer-grid[b-y6sbu1rihv] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.customer-card[b-y6sbu1rihv] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideUp-b-y6sbu1rihv 0.6s ease-out;
}

.customer-card:hover[b-y6sbu1rihv] {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.2);
}

.customer-header[b-y6sbu1rihv] {
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.customer-header h5[b-y6sbu1rihv] {
    color: #333;
    margin: 0;
    font-size: 1.2rem;
}

.customer-email[b-y6sbu1rihv] {
    color: #666;
    font-size: 0.9rem;
}

.customer-details p[b-y6sbu1rihv] {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #555;
}

.customer-actions[b-y6sbu1rihv] {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.btn-gold-small[b-y6sbu1rihv] {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.btn-gold-small:hover[b-y6sbu1rihv] {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.5);
}

/* Animations */
@keyframes fadeIn-b-y6sbu1rihv {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp-b-y6sbu1rihv {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .customer-grid[b-y6sbu1rihv] {
        grid-template-columns: 1fr;
    }
    .customer-actions[b-y6sbu1rihv] {
        flex-direction: column;
    }
    .customer-list-title[b-y6sbu1rihv] {
        font-size: 2rem;
    }
}

/* Order Row Highlights */
.customer-orders-panel[b-y6sbu1rihv]  table tr.row-today {
    background-color: #fff3cd;
}

.customer-orders-panel[b-y6sbu1rihv]  table tr.row-upcoming {
    background-color: #d1ecf1;
}
/* /Components/Pages/Views/Friseure/FriseurDashboard.razor.rz.scp.css */
body[b-n3q7zkkv5s] {
}
/* /Components/Pages/Views/Friseure/FriseurInspirationGalleryView.razor.rz.scp.css */
/* FriseurInspirationGalleryView.razor.css */

.inspirations-container[b-jzo27nrfdw] {
 padding:20px;
 background-color: #f8f9fa;
 min-height:100vh;
 font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.inspirations-title[b-jzo27nrfdw] {
 color: #333;
 text-align: center;
 margin-bottom:30px;
 font-size:2.5rem;
 animation: fadeIn-b-jzo27nrfdw 1s ease-in;
}

.inspirations-header[b-jzo27nrfdw] {
 display: flex;
 justify-content: space-between;
 align-items: center;
 margin-bottom:20px;
 flex-wrap: wrap;
 gap:15px;
}

.filter-section[b-jzo27nrfdw] {
 display: flex;
 align-items: center;
 gap:10px;
}

.filter-section label[b-jzo27nrfdw] {
 margin:0;
 font-weight:600;
 color: #555;
}

/* Use global .form-select from SoftBloom.css */
/* Use global .btn-gold from SoftBloom.css */

.inspirations-grid[b-jzo27nrfdw] {
 display: grid;
 grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
 gap:20px;
}

.inspiration-card[b-jzo27nrfdw] {
 background: white;
 border-radius:10px;
 box-shadow:04px8px rgba(0,0,0,0.1);
 overflow: hidden;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
 animation: slideUp-b-jzo27nrfdw 0.6s ease-out;
}

.inspiration-card:hover[b-jzo27nrfdw] {
 transform: translateY(-5px);
 box-shadow:08px16px rgba(212,175,55,0.2);
}

.inspiration-image[b-jzo27nrfdw], .inspiration-video[b-jzo27nrfdw] {
 width:100%;
 height:200px;
 object-fit: cover;
}

.inspiration-content[b-jzo27nrfdw] {
 padding:15px;
}

.inspiration-content h5[b-jzo27nrfdw] {
 color: #333;
 margin-bottom:10px;
 font-size:1.2rem;
}

.inspiration-content p[b-jzo27nrfdw] {
 color: #666;
 margin-bottom:10px;
 font-size:0.9rem;
}

.inspiration-meta[b-jzo27nrfdw] {
 display: flex;
 flex-wrap: wrap;
 gap:8px;
 margin-bottom:15px;
}

.category-badge[b-jzo27nrfdw], .popular-badge[b-jzo27nrfdw] {
 padding:4px8px;
 border-radius:12px;
 font-size:0.8rem;
 font-weight:500;
}

.category-badge[b-jzo27nrfdw] {
 background: #D4AF37;
 color: white;
}

.popular-badge[b-jzo27nrfdw] {
 background: #28a745;
 color: white;
}

.views[b-jzo27nrfdw] {
 color: #999;
 font-size:0.8rem;
}

.inspiration-actions[b-jzo27nrfdw] {
 display: flex;
 gap:10px;
}

/* Use global .btn-gold-small from SoftBloom.css */

/* Modal styles */
.modal-content[b-jzo27nrfdw] {
 border: none;
 border-radius:15px;
}

.modal-header[b-jzo27nrfdw] {
 border-bottom: none;
 border-radius:15px15px00;
}

/* Animations */
@keyframes fadeIn-b-jzo27nrfdw {
 from { opacity:0; }
 to { opacity:1; }
}

@keyframes slideUp-b-jzo27nrfdw {
 from {
 opacity:0;
 transform: translateY(20px);
 }
 to {
 opacity:1;
 transform: translateY(0);
 }
}

/* Responsive */
@media (max-width:768px) {
 .inspirations-header[b-jzo27nrfdw] {
 flex-direction: column;
 align-items: stretch;
 }
 .inspirations-grid[b-jzo27nrfdw] {
 grid-template-columns:1fr;
 }
 .inspirations-title[b-jzo27nrfdw] {
 font-size:2rem;
 }
}}
/* /Components/Pages/Views/Friseure/FriseurRevenueReportView.razor.rz.scp.css */
/* FriseurRevenueReportView.razor.css */

.revenue-report-container[b-mplkvxkke7] {
    padding: 20px;
    background-color: #f8f9fa;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.revenue-report-title[b-mplkvxkke7] {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    animation: fadeIn-b-mplkvxkke7 1s ease-in;
}

.report-filters[b-mplkvxkke7] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.filter-group[b-mplkvxkke7] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group label[b-mplkvxkke7] {
    margin: 0;
    font-weight: 600;
    color: #555;
}

.form-select[b-mplkvxkke7] {
    border: 2px solid #D4AF37;
    border-radius: 8px;
    padding: 8px 12px;
    background: white;
    color: #333;
}

.btn-gold[b-mplkvxkke7] {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover[b-mplkvxkke7] {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(212, 175, 55, 0.5);
}

.report-summary[b-mplkvxkke7] {
    margin-bottom: 30px;
}

.summary-cards[b-mplkvxkke7] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.summary-card[b-mplkvxkke7] {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
    animation: slideUp-b-mplkvxkke7 0.6s ease-out;
}

.summary-card h3[b-mplkvxkke7] {
    font-size: 2rem;
    margin: 0;
    font-weight: bold;
}

.summary-card p[b-mplkvxkke7] {
    margin: 10px 0 0 0;
    opacity: 0.9;
}

.report-details[b-mplkvxkke7] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.chart-section[b-mplkvxkke7] {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn-b-mplkvxkke7 0.8s ease-out;
}

.chart-section h3[b-mplkvxkke7] {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.service-revenue-list[b-mplkvxkke7], .status-breakdown[b-mplkvxkke7] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-revenue-item[b-mplkvxkke7], .status-item[b-mplkvxkke7] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 4px solid #D4AF37;
}

.service-name[b-mplkvxkke7], .status-name[b-mplkvxkke7] {
    font-weight: 600;
    color: #333;
}

.service-revenue[b-mplkvxkke7], .status-count[b-mplkvxkke7] {
    color: #D4AF37;
    font-weight: bold;
}

.service-percentage[b-mplkvxkke7], .status-percentage[b-mplkvxkke7] {
    color: #666;
    font-size: 0.9rem;
}

.daily-revenue-chart[b-mplkvxkke7] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.daily-revenue-item[b-mplkvxkke7] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.day-label[b-mplkvxkke7] {
    width: 60px;
    font-weight: 600;
    color: #333;
}

.revenue-bar[b-mplkvxkke7] {
    height: 20px;
    background: linear-gradient(90deg, #D4AF37, #FFD700);
    border-radius: 10px;
    min-width: 10px;
}

.revenue-amount[b-mplkvxkke7] {
    font-weight: bold;
    color: #D4AF37;
    min-width: 80px;
    text-align: right;
}

/* Animations */
@keyframes fadeIn-b-mplkvxkke7 {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp-b-mplkvxkke7 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .report-filters[b-mplkvxkke7] {
        flex-direction: column;
        gap: 15px;
    }
    .summary-cards[b-mplkvxkke7] {
        grid-template-columns: 1fr;
    }
    .report-details[b-mplkvxkke7] {
        grid-template-columns: 1fr;
    }
    .revenue-report-title[b-mplkvxkke7] {
        font-size: 2rem;
    }
}
/* /Components/Pages/Views/Friseure/FriseurReviewManagementView.razor.rz.scp.css */
/* FriseurReviewManagementView.razor.css */

.reviews-management-container[b-zjarnwoz7f] {
    padding: 20px;
    background-color: #f8f9fa;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.reviews-management-title[b-zjarnwoz7f] {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    animation: fadeIn-b-zjarnwoz7f 1s ease-in;
}

.reviews-summary[b-zjarnwoz7f] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.summary-card[b-zjarnwoz7f] {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
    animation: slideUp-b-zjarnwoz7f 0.6s ease-out;
}

.summary-card h3[b-zjarnwoz7f] {
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
}

.summary-card p[b-zjarnwoz7f] {
    margin: 10px 0 0 0;
    opacity: 0.9;
}

.reviews-list[b-zjarnwoz7f] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card[b-zjarnwoz7f] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideUp-b-zjarnwoz7f 0.6s ease-out;
}

.review-card:hover[b-zjarnwoz7f] {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.2);
}

.review-header[b-zjarnwoz7f] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.review-header h5[b-zjarnwoz7f] {
    margin: 0;
    color: #333;
    font-size: 1.2rem;
}

.review-rating[b-zjarnwoz7f] {
    display: flex;
    align-items: center;
    gap: 5px;
}

.star[b-zjarnwoz7f] {
    color: #ddd;
    font-size: 1.2rem;
}

.star.filled[b-zjarnwoz7f] {
    color: #FFD700;
}

.review-date[b-zjarnwoz7f] {
    color: #666;
    font-size: 0.9rem;
}

.review-content p[b-zjarnwoz7f] {
    margin: 5px 0;
    color: #555;
}

.review-response[b-zjarnwoz7f] {
    background: #f0f8ff;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    border-left: 4px solid #D4AF37;
}

.review-actions[b-zjarnwoz7f] {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Use global .btn-gold-small and .form-control from app/bootstrap */

/* Modal styles */
.modal-content[b-zjarnwoz7f] {
    border: none;
    border-radius: 15px;
}

.modal-header[b-zjarnwoz7f] {
    border-bottom: none;
    border-radius: 15px 15px 0 0;
}

/* Animations */
@keyframes fadeIn-b-zjarnwoz7f {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp-b-zjarnwoz7f {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .review-header[b-zjarnwoz7f] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .review-actions[b-zjarnwoz7f] {
        justify-content: center;
    }
    .reviews-management-title[b-zjarnwoz7f] {
        font-size: 2rem;
    }
    .reviews-summary[b-zjarnwoz7f] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Views/Friseure/FriseurServiceListView.razor.rz.scp.css */
/* FriseurServiceListView.razor.css */

.services-list-container[b-c9o7b6ibqi] {
 padding:20px;
 background-color: #f8f9fa;
 min-height:100vh;
 font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.services-list-title[b-c9o7b6ibqi] {
 color: #333;
 text-align: center;
 margin-bottom:30px;
 font-size:2.5rem;
 animation: fadeIn1s ease-in;
}

.services-header[b-c9o7b6ibqi] { display: flex; justify-content:flex-end; margin-bottom:20px; }

/* Use global .btn-gold */

.services-grid[b-c9o7b6ibqi] {
 display: grid;
 grid-template-columns: repeat(auto-fill, minmax(350px,1fr));
 gap:20px;
}

.service-card[b-c9o7b6ibqi] {
 background: white;
 border-radius:10px;
 box-shadow:04px8px rgba(0,0,0,0.1);
 padding:20px;
 transition: transform0.3s ease, box-shadow0.3s ease;
 animation: slideUp0.6s ease-out;
}

.service-card:hover[b-c9o7b6ibqi] { transform: translateY(-5px); box-shadow:08px16px rgba(212,175,55,0.2); }

.service-header[b-c9o7b6ibqi] {
 display:flex;
 justify-content: space-between;
 align-items:center;
 border-bottom:2px solid #D4AF37;
 padding-bottom:10px;
 margin-bottom:15px;
}

.service-header h5[b-c9o7b6ibqi] { margin:0; color: #333; font-size:1.2rem; }

.service-price[b-c9o7b6ibqi] { font-weight:700; color: #D4AF37; font-size:1.1rem; }

.service-details p[b-c9o7b6ibqi] { margin:5px0; font-size:0.9rem; color: #555; }

.service-image[b-c9o7b6ibqi] { max-width:100px; max-height:100px; border-radius:5px; margin-top:5px; }

.service-actions[b-c9o7b6ibqi] { margin-top:15px; display:flex; gap:10px; flex-wrap:wrap; }

/* Use global .btn-gold-small */

/* Modal styles */
.modal-content[b-c9o7b6ibqi] { border: none; border-radius:15px; }
.modal-header[b-c9o7b6ibqi] { border-bottom:none; border-radius:15px15px00; }

/* Animations */
@keyframes fadeIn-b-c9o7b6ibqi { from { opacity:0; } to { opacity:1; } }
@keyframes slideUp-b-c9o7b6ibqi { from { opacity:0; transform: translateY(20px);} to { opacity:1; transform: translateY(0);} }

/* Responsive */
@media (max-width:768px) {
 .services-grid[b-c9o7b6ibqi] { grid-template-columns:1fr; }
 .service-header[b-c9o7b6ibqi] { flex-direction: column; align-items:flex-start; gap:10px; }
 .service-actions[b-c9o7b6ibqi] { justify-content:center; }
 .services-list-title[b-c9o7b6ibqi] { font-size:2rem; }
}
/* /Components/Pages/Views/Public/Index.razor.rz.scp.css */
.grid-container[b-4be8qwdkau] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.kachel[b-4be8qwdkau] {
    border-radius: 12px;
    color: #333;
    animation: fadeInUp-b-4be8qwdkau 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.kachel:hover[b-4be8qwdkau] {
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.kachel:active[b-4be8qwdkau] {
    animation: pulse-b-4be8qwdkau 0.3s ease;
}

    .kachel.active[b-4be8qwdkau] {
        border: 3px solid #007bff;
        box-shadow: 0 0 20px rgba(0, 123, 255, 0.4);
        transform: scale(1.05);
    }


.kachel.disabled[b-4be8qwdkau] {
    opacity: 0.5;
    cursor: not-allowed;
}

@keyframes fadeInUp-b-4be8qwdkau {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-b-4be8qwdkau {
    0% { transform: scale(1); }
    50% { transform: scale(0.97); }
    100% { transform: scale(1); }
}
/* /Components/Pages/Views/Public/MasonryGallery.razor.rz.scp.css */
.masonry-grid[b-c9f2zuz52q] {
    column-count: 3;
    column-gap: 1rem;
}

.masonry-item[b-c9f2zuz52q] {
    break-inside: avoid;
    margin-bottom: 1rem;
    cursor: pointer;
 
    transition: transform 0.3s ease;
}

    .masonry-item img[b-c9f2zuz52q] {
        width: 100%;
        border-radius: 8px;
    }

    .masonry-item.selected[b-c9f2zuz52q] {
        border: 3px solid red;
        box-shadow: 0 0 10px rgba(255,0,0,0.5);
    }

    .masonry-item.selected img[b-c9f2zuz52q] {
        border: 3px solid #007bff;
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }

.description-box[b-c9f2zuz52q] {
    max-width: 600px;
}
.card:hover[b-c9f2zuz52q] {
    transform: scale(1.02);
    transition: transform 0.2s ease;
}

.card-img-top[b-c9f2zuz52q] {
   
    object-fit: cover;
    transform: scale(0.5);
}

.masonry-item:hover[b-c9f2zuz52q] {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.col-2[b-c9f2zuz52q] {
    transform: translateX(100%);
    transition: transform 0.5s ease;
}

.col-2.visible[b-c9f2zuz52q] {
    transform: translateX(0);
}
/* /Components/Pages/Views/Public/MasonryMasonryGallery.razor.rz.scp.css */
.card[b-xkifi80cba] {
    cursor: pointer;
    transition: transform 0.2s ease;
}

    .card:hover[b-xkifi80cba] {
        transform: scale(1.02);
    }

.card-img-top[b-xkifi80cba] {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
/* /Components/Pages/Views/Shared/SupportFaqView.razor.rz.scp.css */
/* SupportFaqView.razor.css */

.support-faq-container[b-ae0v7ca6w7] {
    padding: 20px;
    background-color: #f8f9fa;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.support-faq-title[b-ae0v7ca6w7] {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    animation: fadeIn-b-ae0v7ca6w7 1s ease-in;
}

.faq-section[b-ae0v7ca6w7], .contact-section[b-ae0v7ca6w7], .chat-support-section[b-ae0v7ca6w7] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
    animation: slideUp-b-ae0v7ca6w7 0.6s ease-out;
}

.faq-section h2[b-ae0v7ca6w7], .contact-section h2[b-ae0v7ca6w7], .chat-support-section h2[b-ae0v7ca6w7] {
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 10px;
}

.accordion-button[b-ae0v7ca6w7] {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #D4AF37;
    font-weight: 600;
}

.accordion-button:not(.collapsed)[b-ae0v7ca6w7] {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: white;
}

.accordion-body[b-ae0v7ca6w7] {
    background: #f9f9fa;
    color: #555;
}

.form-group[b-ae0v7ca6w7] {
    margin-bottom: 15px;
}

.form-group label[b-ae0v7ca6w7] {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
}

.form-control[b-ae0v7ca6w7], .form-select[b-ae0v7ca6w7] {
    width: 100%;
    padding: 10px;
    border: 2px solid #D4AF37;
    border-radius: 8px;
    font-size: 1rem;
}

.form-control:focus[b-ae0v7ca6w7], .form-select:focus[b-ae0v7ca6w7] {
    border-color: #FFD700;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.btn-gold[b-ae0v7ca6w7] {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover[b-ae0v7ca6w7] {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(212, 175, 55, 0.5);
}

.chat-placeholder[b-ae0v7ca6w7] {
    margin-top: 15px;
    padding: 15px;
    background: #f0f8ff;
    border-radius: 8px;
    border-left: 4px solid #D4AF37;
}

/* Animations */
@keyframes fadeIn-b-ae0v7ca6w7 {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp-b-ae0v7ca6w7 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .support-faq-title[b-ae0v7ca6w7] {
        font-size: 2rem;
    }
    .faq-section[b-ae0v7ca6w7], .contact-section[b-ae0v7ca6w7], .chat-support-section[b-ae0v7ca6w7] {
        padding: 15px;
    }
}
/* /Components/QuickBooking/QuickBooking.razor.rz.scp.css */
:root[b-ctykdirk06]{
  --suada-primary:#D4AF37;
  --suada-on-primary:#000000;
  --suada-accent:#0f172a;
  --suada-muted:#6b7280;
}

.qb-root[b-ctykdirk06]{
  display:flex;
  gap:1rem;
  align-items:flex-start;
  width:100%;
  align-items:stretch;
}

/* Local theme tokens for QuickBooking to avoid being overridden by global theme
   The global SoftBloom.css defines --text-light / --text-dark; that made
   day numbers too light. We set local vars on the component root so colors
   inside this component use the intended contrast without touching global theme. */
.qb-root[b-ctykdirk06]{
  --text-light: var(--suada-on-primary);
  --text-dark: var(--suada-accent);
  /* local override for selected day number color - prefer theme primary pink when available */
  /* stronger default selected digit color (darker pink) to improve contrast */
  --qb-selected-digit-color: var(--primary, #d16ba5);
}

.qb-left[b-ctykdirk06]{
  width:46%;
  min-width:260px;
}

.qb-right[b-ctykdirk06]{
  width:54%;
  min-width:260px;
}

.qb-header[b-ctykdirk06]{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:0.5rem;
}

.qb-month[b-ctykdirk06]{
  font-weight:800;
  text-align:center;
  flex:1;
  font-size:1.9rem; /* month headline larger than day numbers */
  line-height:1;
}

.qb-weekdays[b-ctykdirk06]{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:0.25rem;
  margin-top:0.75rem;
}

.qb-weekday[b-ctykdirk06]{
  text-align:center;
  font-size:1.05rem; /* larger than day numbers so headers stand out */
  font-weight:700;
  color:var(--suada-muted);
  padding:0.35rem 0;
}

.qb-days[b-ctykdirk06]{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:0.5rem;
  margin-top:0.5rem;
}

.qb-day[b-ctykdirk06]{
  background:var(--suada-surface);
  border-radius:8px; /* square-like with small rounding */
  aspect-ratio: 1 / 1; /* keep square */
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  cursor:pointer;
  box-shadow: 0 6px 20px rgba(16,24,40,0.08); /* stronger separation */
  transform: translateZ(0);
}

.qb-day:hover:not(.qb-day-disabled)[b-ctykdirk06]{
  background: rgba(15,23,42,0.08);
  transform: translateY(-4px);
}

.qb-day-num[b-ctykdirk06]{
  font-weight:800;
  font-size:1.6rem; /* make number large */
  color: var(--text-dark) !important; /* use local override to ensure contrast */
}

.qb-day-muted[b-ctykdirk06]{ opacity:0.45; }
.qb-day-disabled[b-ctykdirk06]{ opacity:0.35; cursor:not-allowed; }
.qb-day-selected[b-ctykdirk06]{
  /* stronger, fully opaque highlight using brand gold */
  background: linear-gradient(180deg, var(--suada-primary), rgba(212,175,55,1));
  color: var(--suada-on-primary);
  box-shadow: 0 12px 34px rgba(212,175,55,0.22);
  border: 2px solid rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.qb-day-unavailable[b-ctykdirk06]{ opacity:0.35; cursor:not-allowed; filter:grayscale(0.2); }

/* ensure contrast for selected numbers */
.qb-day-selected .qb-day-num[b-ctykdirk06]{ color:var(--suada-on-primary); font-size:1.75rem; }

/* Make selected day's number use the pink primary from SoftBloom if present.
   Use a more specific selector with !important so global theme variables or
   generic rules do not override this component intent. */
.qb-left .qb-day-selected .qb-day-num[b-ctykdirk06] {
  color: var(--qb-selected-digit-color) !important;
}

/* When not selected, make number visible and with contrast */
.qb-day:not(.qb-day-selected) .qb-day-num[b-ctykdirk06]{ color:var(--suada-accent); opacity:1; }

/* (selection contrast handled above) */

/* stronger overall calendar background */
.qb-left[b-ctykdirk06]{ background:linear-gradient(180deg,#ffffff,#fbfbfb); padding:0.75rem; border-radius:10px; border:1px solid rgba(15,23,42,0.04); }

/* slots */
.qb-slots-header[b-ctykdirk06]{ font-weight:700; margin-bottom:0.5rem; }
.qb-slots[b-ctykdirk06]{
  /* slots shown as compact grid of start times; selected slot expands */
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:0.5rem;
}
.qb-slot[b-ctykdirk06]{
  text-align:left;
  border-radius:8px;
  border:1px solid rgba(15,23,42,0.06);
  background:#fff;
  cursor:pointer;
  overflow:hidden;
  font-size:0.9rem;
  transition: all .18s ease;
}
.qb-slot-compact[b-ctykdirk06]{
  padding:0.25rem 0.5rem;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.qb-slot-compact-label[b-ctykdirk06]{ font-weight:700; color:var(--suada-accent); font-size:1rem }
.qb-slot-expanded[b-ctykdirk06]{
  padding:0.6rem 0.8rem;
  box-shadow:0 10px 30px rgba(16,24,40,0.08);
}
.qb-slot-expanded .qb-slot-expanded-inner[b-ctykdirk06]{ display:flex; gap:1rem; justify-content:space-between; align-items:center }
.qb-slot-selected[b-ctykdirk06]{ border-color: var(--suada-primary); background: linear-gradient(90deg, rgba(212,175,55,0.12), rgba(255,255,255,0)); }
.qb-slot:hover[b-ctykdirk06]{ box-shadow:0 6px 18px rgba(16,24,40,0.04); transform: translateY(-2px); }

.qb-slot-selected[b-ctykdirk06]{
  border-color: var(--suada-primary);
  background: linear-gradient(90deg, rgba(212,175,55,0.12), rgba(255,255,255,0));
  box-shadow: 0 8px 24px rgba(212,175,55,0.12);
}

.qb-no-slots[b-ctykdirk06]{ color:var(--suada-muted); padding:0.8rem 0; }
.qb-error[b-ctykdirk06]{ background:#fff4f4; border:1px solid #ffdddd; color:#9b1c1c; padding:0.6rem; border-radius:8px; margin-bottom:0.5rem; }

/* alarm pulsing (when HasError) */
.alarm[b-ctykdirk06]{ animation: qb-pulse-b-ctykdirk06 1s infinite; }
@keyframes qb-pulse-b-ctykdirk06{
  0%{ box-shadow: 0 0 0 0 rgba(212,75,56,0.0); }
  50%{ box-shadow: 0 0 0 8px rgba(212,75,56,0.06); }
  100%{ box-shadow: 0 0 0 0 rgba(212,75,56,0.0); }
}

/* responsive */
@media (max-width:860px){
  .qb-root[b-ctykdirk06]{ flex-direction:column; }
  .qb-left[b-ctykdirk06], .qb-right[b-ctykdirk06]{ width:100%; }
  .qb-slots[b-ctykdirk06]{ grid-template-columns: 1fr; }
}
/* /Components/QuickBooking/QuickBookingDemo.razor.rz.scp.css */
.qb-demo-grid[b-sas4t151ui]{ display:flex; gap:2.5rem; align-items:flex-start }
.demo-container[b-sas4t151ui]{ flex:1; display:flex; flex-direction:column; gap:1rem }
.demo-right[b-sas4t151ui]{ width:420px }
@media (max-width:800px){ .qb-demo-grid[b-sas4t151ui]{ flex-direction:column } .demo-right[b-sas4t151ui]{ width:100% } }
/* /Components/QuickBooking/QuickSlot.razor.rz.scp.css */
:root[b-dguukq0c5k]{
  --suada-primary:#D4AF37;
  --suada-on-primary:#000000;
  --suada-accent:#0f172a;
  --suada-muted:#6b7280;
}

.qb-root[b-dguukq0c5k]{
  display:flex;
  gap:1rem;
  align-items:flex-start;
  width:100%;
  align-items:stretch;
}

/* Local theme tokens for QuickBooking to avoid being overridden by global theme
   The global SoftBloom.css defines --text-light / --text-dark; that made
   day numbers too light. We set local vars on the component root so colors
   inside this component use the intended contrast without touching global theme. */
.qb-root[b-dguukq0c5k]{
  --text-light: var(--suada-on-primary);
  --text-dark: var(--suada-accent);
  /* local override for selected day number color - prefer theme primary pink when available */
  /* stronger default selected digit color (darker pink) to improve contrast */
  --qb-selected-digit-color: var(--primary, #d16ba5);
}

.qb-left[b-dguukq0c5k]{
  width:46%;
  min-width:260px;
}

.qb-right[b-dguukq0c5k]{
  width:54%;
  min-width:260px;
}

.qb-header[b-dguukq0c5k]{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:0.5rem;
}

.qb-month[b-dguukq0c5k]{
  font-weight:800;
  text-align:center;
  flex:1;
  font-size:1.9rem; /* month headline larger than day numbers */
  line-height:1;
}

.qb-weekdays[b-dguukq0c5k]{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:0.25rem;
  margin-top:0.75rem;
}

.qb-weekday[b-dguukq0c5k]{
  text-align:center;
  font-size:1.05rem; /* larger than day numbers so headers stand out */
  font-weight:700;
  color:var(--suada-muted);
  padding:0.35rem 0;
}

.qb-days[b-dguukq0c5k]{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:0.5rem;
  margin-top:0.5rem;
}

.qb-day[b-dguukq0c5k]{
  background:var(--suada-surface);
  border-radius:8px; /* square-like with small rounding */
  aspect-ratio: 1 / 1; /* keep square */
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  cursor:pointer;
  box-shadow: 0 6px 20px rgba(16,24,40,0.08); /* stronger separation */
  transform: translateZ(0);
}

.qb-day:hover:not(.qb-day-disabled)[b-dguukq0c5k]{
  background: rgba(15,23,42,0.08);
  transform: translateY(-4px);
}

.qb-day-num[b-dguukq0c5k]{
  font-weight:800;
  font-size:1.6rem; /* make number large */
  color: var(--text-dark) !important; /* use local override to ensure contrast */
}

.qb-day-muted[b-dguukq0c5k]{ opacity:0.45; }
.qb-day-disabled[b-dguukq0c5k]{ opacity:0.35; cursor:not-allowed; }
.qb-day-selected[b-dguukq0c5k]{
  /* stronger, fully opaque highlight using brand gold */
  background: linear-gradient(180deg, var(--suada-primary), rgba(212,175,55,1));
  color: var(--suada-on-primary);
  box-shadow: 0 12px 34px rgba(212,175,55,0.22);
  border: 2px solid rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.qb-day-unavailable[b-dguukq0c5k]{ opacity:0.35; cursor:not-allowed; filter:grayscale(0.2); }

/* ensure contrast for selected numbers */
.qb-day-selected .qb-day-num[b-dguukq0c5k]{ color:var(--suada-on-primary); font-size:1.75rem; }

/* Make selected day's number use the pink primary from SoftBloom if present.
   Use a more specific selector with !important so global theme variables or
   generic rules do not override this component intent. */
.qb-left .qb-day-selected .qb-day-num[b-dguukq0c5k] {
  color: var(--qb-selected-digit-color) !important;
}

/* When not selected, make number visible and with contrast */
.qb-day:not(.qb-day-selected) .qb-day-num[b-dguukq0c5k]{ color:var(--suada-accent); opacity:1; }

/* (selection contrast handled above) */

/* stronger overall calendar background */
.qb-left[b-dguukq0c5k]{ background:linear-gradient(180deg,#ffffff,#fbfbfb); padding:0.75rem; border-radius:10px; border:1px solid rgba(15,23,42,0.04); }

/* slots */
.qb-starttimes-header[b-dguukq0c5k]{ font-weight:700; margin-bottom:0.5rem; }
.qb-starttimes[b-dguukq0c5k]{
  /* slots shown as compact grid of start times; selected slot expands */
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:0.5rem;
}
.qb-starttime[b-dguukq0c5k]{
  text-align:left;
  border-radius:8px;
  border:1px solid rgba(15,23,42,0.06);
  background:#fff;
  cursor:pointer;
  overflow:hidden;
  font-size:0.9rem;
  transition: all .18s ease;
}
.qb-starttime-compact[b-dguukq0c5k]{
  padding:0.25rem 0.5rem;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.qb-starttime-compact-label[b-dguukq0c5k]{ font-weight:700; color:var(--suada-accent); font-size:1rem }
.qb-starttime-expanded[b-dguukq0c5k]{
  padding:0.6rem 0.8rem;
  box-shadow:0 10px 30px rgba(16,24,40,0.08);
}
.qb-starttime-expanded .qb-starttime-expanded-inner[b-dguukq0c5k]{ display:flex; gap:1rem; justify-content:space-between; align-items:center }
.qb-starttime-selected[b-dguukq0c5k]{ border-color: var(--suada-primary); background: linear-gradient(90deg, rgba(212,175,55,0.12), rgba(255,255,255,0)); }
.qb-starttime:hover[b-dguukq0c5k]{ box-shadow:0 6px 18px rgba(16,24,40,0.04); transform: translateY(-2px); }

.qb-starttime-selected[b-dguukq0c5k]{
  border-color: var(--suada-primary);
  background: linear-gradient(90deg, rgba(212,175,55,0.12), rgba(255,255,255,0));
  box-shadow: 0 8px 24px rgba(212,175,55,0.12);
}

.qb-no-slots[b-dguukq0c5k]{ color:var(--suada-muted); padding:0.8rem 0; }
.qb-error[b-dguukq0c5k]{ background:#fff4f4; border:1px solid #ffdddd; color:#9b1c1c; padding:0.6rem; border-radius:8px; margin-bottom:0.5rem; }

/* alarm pulsing (when HasError) */
.alarm[b-dguukq0c5k]{ animation: qb-pulse-b-dguukq0c5k 1s infinite; }
@keyframes qb-pulse-b-dguukq0c5k{
  0%{ box-shadow: 0 0 0 0 rgba(212,75,56,0.0); }
  50%{ box-shadow: 0 0 0 8px rgba(212,75,56,0.06); }
  100%{ box-shadow: 0 0 0 0 rgba(212,75,56,0.0); }
}

/* responsive */
@media (max-width:860px){
  .qb-root[b-dguukq0c5k]{ flex-direction:column; }
  .qb-left[b-dguukq0c5k], .qb-right[b-dguukq0c5k]{ width:100%; }
  .qb-starttimes[b-dguukq0c5k]{ grid-template-columns: 1fr; }
}
/* /Components/QuickBooking/ServiceSelector.razor.rz.scp.css */
:root[b-okt213r5kp] {
    --ss-accent: #f6c1d5; /* pink fallback */
    --ss-selected-bg: #d16ba5;
}

.ss-root[b-okt213r5kp] {
    display: block;
}

.ss-toolbar[b-okt213r5kp] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem
}
/* limit search input width so it doesn't span the whole toolbar */
.ss-search[b-okt213r5kp] {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 360px;
    width: 100%;
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid rgba(15,23,42,0.06)
}

.ss-summary[b-okt213r5kp] {
    white-space: nowrap;
    color: var(--suada-muted);
    margin-left: 0.5rem
}

.ss-grid[b-okt213r5kp] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.5rem
}

.ss-card[b-okt213r5kp] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem;
    border-radius: 10px;
    border: 1px solid rgba(15,23,42,0.06);
    background: #fff;
    cursor: pointer;
    min-height: 56px;
    color: var(--suada-accent);
}

.ss-card[b-okt213r5kp] {
    position: relative;
    z-index: 999;
}

    .ss-card:hover[b-okt213r5kp] {
        box-shadow: 0 6px 18px rgba(15,23,42,0.04);
        transform: translateY(-2px);
    }

    .ss-card.selected[b-okt213r5kp] {
        background: linear-gradient(90deg, var(--ss-selected-bg), rgba(209,107,165,0.85));
        color: var(--suada-accent);
        border-color: rgba(0,0,0,0.08);
    }

    .ss-card:active[b-okt213r5kp] {
        transform: translateY(1px)
    }

.ss-card-main[b-okt213r5kp] {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.ss-title[b-okt213r5kp] {
    font-weight: 700
}

.ss-meta[b-okt213r5kp] {
    font-size: 0.85rem;
    color: var(--suada-muted)
}

.ss-chip[b-okt213r5kp] {
    width: 36px;
    height: 36px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15,23,42,0.06);
    font-weight: 700;
    color: var(--suada-accent);
}

.ss-card.selected .ss-meta[b-okt213r5kp] {
    color: var(--suada-accent);
}

.ss-card.selected .ss-title[b-okt213r5kp] {
    color: var(--suada-accent);
}

.ss-card.selected .ss-chip[b-okt213r5kp] {
    background: rgba(255,255,255,0.92);
    color: var(--suada-accent);
    font-weight: 800
}

@media (max-width:640px) {
    .ss-grid[b-okt213r5kp] {
        grid-template-columns: 1fr
    }

    .ss-chip[b-okt213r5kp] {
        width: 40px;
        height: 40px;
        border-radius: 20px
    }

    .ss-search[b-okt213r5kp] {
        max-width: 100%;
    }
}
/* /Components/ServicePriceList.razor.rz.scp.css */
.service-price-grid .col-narrow[b-dr399dnr3e]{
  width:1%;
}
.service-price-grid .text-nowrap[b-dr399dnr3e]{
  white-space:nowrap;
}

.price-wrap[b-dr399dnr3e]{
  /* multi-layer friendly gradient */
  background:
    radial-gradient(900px 600px at 0% 0%, rgba(102,126,234,.20), transparent 55%),
    radial-gradient(900px 600px at 100% 100%, rgba(253,160,133,.22), transparent 55%),
    radial-gradient(700px 500px at 100% 0%, rgba(118,75,162,.18), transparent 60%),
    linear-gradient(180deg,#ffffff 0%, #f5f7ff 100%);
  border-radius: .75rem;
  padding: 1rem 1.25rem;
  position: relative;
  overflow: hidden;
  transition: background-position .6s ease;
}
.price-wrap:hover[b-dr399dnr3e]{
  background-position: 2% 2%, 98% 98%, 100% 0%, 0 0; /* slight movement */
}

/* Let gradient shine through Bootstrap table backgrounds */
.service-price-table[b-dr399dnr3e],
.service-price-table thead[b-dr399dnr3e],
.service-price-table tbody[b-dr399dnr3e],
.service-price-table tr[b-dr399dnr3e],
.service-price-table th[b-dr399dnr3e],
.service-price-table td[b-dr399dnr3e]{
  background-color: transparent !important;
}

.service-price-table thead th[b-dr399dnr3e]{
  border-bottom-width: 2px;
}

.service-price-table tbody tr:hover[b-dr399dnr3e]{
  background-color: rgba(0,0,0,.03);
}
/* /Components/ServicesOverview.razor.rz.scp.css */
.services-overview-section[b-bfumxzs69j]{background:linear-gradient(135deg, rgba(102,126,234,.12), rgba(118,75,162,.12));}

.service-card[b-bfumxzs69j]{
  border:0;
  box-shadow:0 2px 6px rgba(0,0,0,.08);
  /* base gradient */
  background:
    radial-gradient(900px 600px at 0% 0%, rgba(102,126,234,.18), transparent 45%),
    radial-gradient(900px 600px at 100% 100%, rgba(253,160,133,.20), transparent 45%),
    radial-gradient(700px 500px at 100% 0%, rgba(118,75,162,.14), transparent 50%),
    linear-gradient(180deg,#ffffff 0%, #f8f9ff 100%);
  transition:transform .15s ease, box-shadow .15s ease, background-position .3s ease;
}
.service-card:hover[b-bfumxzs69j]{
  transform:translateY(-4px);
  box-shadow:0 6px 18px rgba(0,0,0,.12);
}
.service-card h5[b-bfumxzs69j],.service-card h3[b-bfumxzs69j]{font-weight:600;}
.badge.bg-primary-subtle[b-bfumxzs69j]{background:#e6f0ff;color:#0d6efd;}
.badge.bg-secondary-subtle[b-bfumxzs69j]{background:#eee;color:#555;}

/* rotate gradient origins for variety */
.services-overview-section .row > [class*="col-"]:nth-child(3n+1) .service-card[b-bfumxzs69j]{
  background:
    radial-gradient(900px 600px at 100% 0%, rgba(102,126,234,.18), transparent 45%),
    radial-gradient(900px 600px at 0% 100%, rgba(253,160,133,.20), transparent 45%),
    radial-gradient(700px 500px at 0% 0%, rgba(118,75,162,.14), transparent 50%),
    linear-gradient(180deg,#ffffff 0%, #f8f9ff 100%);
}
.services-overview-section .row > [class*="col-"]:nth-child(3n+2) .service-card[b-bfumxzs69j]{
  background:
    radial-gradient(900px 600px at 50% 0%, rgba(102,126,234,.18), transparent 45%),
    radial-gradient(900px 600px at 50% 100%, rgba(253,160,133,.20), transparent 45%),
    radial-gradient(700px 500px at 100% 50%, rgba(118,75,162,.14), transparent 50%),
    linear-gradient(180deg,#ffffff 0%, #f8f9ff 100%);
}
.services-overview-section .row > [class*="col-"]:nth-child(3n) .service-card[b-bfumxzs69j]{
  background:
    radial-gradient(900px 600px at 0% 50%, rgba(102,126,234,.18), transparent 45%),
    radial-gradient(900px 600px at 100% 50%, rgba(253,160,133,.20), transparent 45%),
    radial-gradient(700px 500px at 50% 100%, rgba(118,75,162,.14), transparent 50%),
    linear-gradient(180deg,#ffffff 0%, #f8f9ff 100%);
}
/* /Components/Shared/OrderStatusPicker.razor.rz.scp.css */
.status-picker[b-jyfvhti324]{display:flex;flex-wrap:wrap;gap:6px}
.st-pill[b-jyfvhti324]{border:none;border-radius:999px;padding:6px10px;font-size:.85rem;cursor:pointer;color:#fff;opacity:.8}
.st-pill.active[b-jyfvhti324]{opacity:1;box-shadow:0002px rgba(0,0,0,.05) inset}
.st-pending[b-jyfvhti324]{background:#ffc107;color:#212529}
.st-confirmed[b-jyfvhti324]{background:#17a2b8}
.st-processing[b-jyfvhti324]{background:#0d6efd}
.st-completed[b-jyfvhti324]{background:#28a745}
.st-cancelled[b-jyfvhti324]{background:#dc3545}
.st-blocked[b-jyfvhti324]{background:#6c757d}
/* /Components/Shared/PeriodPicker.razor.rz.scp.css */
.period-picker[b-vyiqshb4yy]{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.period-picker .btn-group .btn[b-vyiqshb4yy]{padding:6px10px;border:1px solid #ddd;background:#fff;border-radius:6px;margin-right:6px;cursor:pointer}
.period-picker .btn-group .btn.active[b-vyiqshb4yy]{background:#0d6efd;color:#fff;border-color:#0d6efd}
.period-picker .range-picker[b-vyiqshb4yy]{display:flex;align-items:center;gap:6px}
