/* /Pages/about.razor.rz.scp.css */
/* About Page Title (centered and larger, like Contact) */
.about-page-title[b-ncd2j175j9] {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color, #222);
    width: 100%;
    max-width: 1200px;
    text-align: left;
    box-sizing: border-box;
@media (max-width: 600px) {
    .about-page-title[b-ncd2j175j9] {
        text-align: center !important;
    }
    .about-image-container[b-ncd2j175j9], .about-image[b-ncd2j175j9], .about-image-placeholder[b-ncd2j175j9] {
        display: none !important;
    }
}
}


/* About Section Styles */
.about-section[b-ncd2j175j9] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 32px 15% 32px 15%;
    box-sizing: border-box;
}
.about-text-container[b-ncd2j175j9] {
    flex: 1 1 0;
    min-width: 0;
    align-self: flex-start;
    padding-right: 32px;
}
.about-image-container[b-ncd2j175j9] {
    flex: 1 1 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 0;
}
.about-image[b-ncd2j175j9] {
    max-height: 400px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}
.about-image-placeholder[b-ncd2j175j9] {
    width: 400px;
    height: 400px;
    background: #eee;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
}

@media (max-width: 900px) {
    .about-section[b-ncd2j175j9] {
        flex-direction: column;
        align-items: stretch;
    }
    .about-image-container[b-ncd2j175j9] {
        justify-content: center;
        margin-top: 1.5rem;
    }
}

@media (max-width: 600px) {
    .about-image-container[b-ncd2j175j9], .about-image[b-ncd2j175j9], .about-image-placeholder[b-ncd2j175j9] {
        display: none !important;
    }
}
/* /Pages/Admin.razor.rz.scp.css */
/* Admin action buttons: edit, delete, add new */
.admin-action-btn[b-o5auuj8gje], .admin-add-btn[b-o5auuj8gje], .edit-btn[b-o5auuj8gje], .delete-btn[b-o5auuj8gje], .add-btn[b-o5auuj8gje] {
    height: 30px;
    min-height: 30px;
    background-color: #008080;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 0 18px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    margin: 0 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.admin-action-btn:hover[b-o5auuj8gje], .admin-add-btn:hover[b-o5auuj8gje], .edit-btn:hover[b-o5auuj8gje], .delete-btn:hover[b-o5auuj8gje], .add-btn:hover[b-o5auuj8gje] {
    background-color: #006666;
}
/* Force thumbnail height for admin overview images */
/* Apply site font and text color to all admin */
.admin-layout[b-o5auuj8gje], .admin-layout *[b-o5auuj8gje] {
    font-family: var(--admin-font-family, 'Cinzel Decorative', serif);
    color: #222;
}
/* Indent sub-sub-menu items under Pages */
.sub-sub-menu[b-o5auuj8gje] {
    padding-left: 32px;
}
/* Admin Styles */
.admin-layout[b-o5auuj8gje] {
    display: flex;
    height: 100vh;
    background-color: #f5f5f5;
}
.admin-sidebar[b-o5auuj8gje] {
    width: 280px;
    background-color: #f5f5f5;
    color: #333;
    overflow-y: auto;
}
.sidebar-header[b-o5auuj8gje] {
    padding: 20px;
    background-color: #f5f5f5;
}
.sidebar-header h2[b-o5auuj8gje] {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
}
.sidebar-menu[b-o5auuj8gje] {
    padding: 10px 0;
    background-color: #f5f5f5;
}
.menu-item[b-o5auuj8gje] {
    margin-bottom: 5px;
}
.menu-header[b-o5auuj8gje] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    cursor: pointer;
    transition: background-color 0.2s;
    background-color: #f5f5f5;
}
.menu-header:hover[b-o5auuj8gje] {
    background-color: #e8e8e8;
}
.menu-header.selected[b-o5auuj8gje] {
    background-color: #e0e0e0;
}
.menu-title[b-o5auuj8gje] {
    font-weight: 500;
    color: #333;
}
.menu-arrow[b-o5auuj8gje] {
    transition: transform 0.2s;
    font-size: 0.8rem;
    color: #333;
}
.menu-arrow.expanded[b-o5auuj8gje] {
    transform: rotate(90deg);
}
.sub-menu[b-o5auuj8gje] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f5f5f5;
}
.sub-menu.expanded[b-o5auuj8gje] {
    max-height: 200px;
}
/* Overview Tiles Grid */
.overview-tiles[b-o5auuj8gje] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.overview-tile[b-o5auuj8gje] {
    background: #fff;
    border-radius: 12px;
    border: 1.5px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2.2rem 1.2rem 1.2rem 1.2rem;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    transition: box-shadow 0.2s;
}
.overview-tile:hover[b-o5auuj8gje] {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.tile-number[b-o5auuj8gje] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.2rem;
}
.tile-label[b-o5auuj8gje] {
    font-size: 1.1rem;
    color: #888;
    font-weight: 500;
    margin-top: 1.2rem;
    text-align: center;
}
    overflow-y: auto;
    background-color: #f5f5f5;[b-o5auuj8gje]
}
.save-section[b-o5auuj8gje] {
    background-color: #f5f5f5;
    padding: 20px 30px;
}
.save-button[b-o5auuj8gje] {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2s;
}
.save-button:hover:not(:disabled)[b-o5auuj8gje] {
    background-color: #229954;
}
.save-button:disabled[b-o5auuj8gje] {
    background-color: #95a5a6;
    cursor: not-allowed;
}
.save-message[b-o5auuj8gje], .action-message[b-o5auuj8gje] {
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    font-weight: 500;
}
.save-message.success[b-o5auuj8gje], .action-message.success[b-o5auuj8gje] {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.save-message.error[b-o5auuj8gje], .action-message.error[b-o5auuj8gje] {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Admin Layout */
.admin-layout[b-o5auuj8gje] {
    display: flex;
    height: 100vh;
    background: #f5f5f5;
}

/* Left Sidebar */
.admin-sidebar[b-o5auuj8gje] {
    width: 280px;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
}

.sidebar-header[b-o5auuj8gje] {
    padding: 20px;
    background: #f5f5f5;
    color: #333;
}

.sidebar-header h2[b-o5auuj8gje] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.sidebar-menu[b-o5auuj8gje] {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
    background: #f5f5f5;
}

/* Menu Items */
.menu-item[b-o5auuj8gje] {
    margin-bottom: 5px;
}

.menu-header[b-o5auuj8gje] {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-weight: 500;
    color: #333;
    background: #f5f5f5;
}

.menu-header:hover[b-o5auuj8gje] {
    background: #e8e8e8;
}

.menu-header.selected[b-o5auuj8gje] {
    background: #e0e0e0;
    color: #333;
    font-weight: bold;
}

.menu-title[b-o5auuj8gje] {
    flex-grow: 1;
}

.menu-arrow[b-o5auuj8gje] {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    color: #333;
}

.menu-arrow.expanded[b-o5auuj8gje] {
    transform: rotate(90deg);
}

/* Sub Menu */
.sub-menu[b-o5auuj8gje] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f5f5f5;
}

.sub-menu.expanded[b-o5auuj8gje] {
    max-height: 200px;
}

.sub-item[b-o5auuj8gje] {
    display: flex;
    align-items: center;
    padding: 8px 20px 8px 50px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: #333;
    font-size: 0.9rem;
    background: #f5f5f5;
}

.sub-item:hover[b-o5auuj8gje] {
    background: #e8e8e8;
}

.sub-item.selected[b-o5auuj8gje] {
    background: #e0e0e0;
    color: #333;
    font-weight: bold;
}

.sub-title[b-o5auuj8gje] {
    flex-grow: 1;
}

/* Main Content Area */
.admin-content[b-o5auuj8gje] {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f5f5f5;
    margin: 0;
    overflow: hidden;
}

.content-header[b-o5auuj8gje] {
    padding: 20px 30px;
    background: #f5f5f5;
}

.content-header h1[b-o5auuj8gje] {
    margin: 0;
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
}

.content-body[b-o5auuj8gje] {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    background: #f5f5f5;
}

/* Placeholder Content */
.placeholder-content[b-o5auuj8gje] {
    text-align: center;
    padding: 40px;
    color: #666;
    background-color: #f5f5f5;
}
.no-paintings[b-o5auuj8gje] {
    text-align: center;
    padding: 40px;
    background-color: #f5f5f5;
}
.no-paintings p[b-o5auuj8gje] {
    color: #666;
    font-size: 1.1rem;
}

/* Shared Admin Styles */
.admin-thumbnail-img[b-o5auuj8gje] {
    height: 60px;
    width: auto;
    object-fit: contain;
    max-width: 100%;
    display: inline-block;
    border-radius: 4px;
}
.admin-table th[b-o5auuj8gje], .admin-table td[b-o5auuj8gje] {
    padding-left: 18px;
    padding-right: 18px;
}
.admin-add-btn[b-o5auuj8gje], .icon-btn[b-o5auuj8gje], .edit-btn[b-o5auuj8gje], .delete-btn[b-o5auuj8gje] {
    border-radius: 999px;
    background: #fff;
    border: 2px solid #007bff; /* admin default color, adjust as needed */
    color: #007bff;
    padding: 6px 20px;
    font-weight: 500;
    font-size: 1rem;
    box-shadow: none;
    outline: none;
    transition: background 0.2s, color 0.2s, border 0.2s;
}
.admin-add-btn:hover[b-o5auuj8gje], .icon-btn:hover[b-o5auuj8gje], .edit-btn:hover[b-o5auuj8gje], .delete-btn:hover[b-o5auuj8gje] {
    background: #e6f0fa;
    color: #0056b3;
    border-color: #0056b3;
}
.admin-add-btn svg[b-o5auuj8gje], .icon-btn svg[b-o5auuj8gje], .edit-btn svg[b-o5auuj8gje], .delete-btn svg[b-o5auuj8gje] {
    display: none;
}
.edit-btn[b-o5auuj8gje], .delete-btn[b-o5auuj8gje] {
    background: none;
    border: none;
    box-shadow: none;
    outline: none;
    padding: 0;
    margin: 0 4px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 0;
    cursor: pointer;
}
.edit-btn svg[b-o5auuj8gje] {
    color: #007bff;
    width: 22px;
    height: 22px;
    transition: color 0.2s;
    fill: currentColor;
    display: inline;
}
.edit-btn:hover svg[b-o5auuj8gje] {
    color: #0056b3;
}
.delete-btn svg[b-o5auuj8gje] {
    color: #dc3545;
    width: 22px;
    height: 22px;
    transition: color 0.2s;
    fill: currentColor;
    display: inline;
}
.delete-btn:hover svg[b-o5auuj8gje] {
    color: #a71d2a;
}
/* Only hide text, not SVGs */
.edit-btn span[b-o5auuj8gje], .delete-btn span[b-o5auuj8gje] {
    display: none;
}

/* Overview and Form Styles */
.overview-content[b-o5auuj8gje] {
    background-color: #f5f5f5;
}

/* Dashboard/Overview Tile Styles */
.tile-header h3[b-o5auuj8gje] {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
}

.tile-content[b-o5auuj8gje] {
    text-align: center;
}

.tile-number[b-o5auuj8gje] {
    font-size: 2.5rem;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 5px;
}

.tile-label[b-o5auuj8gje] {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.overview-header[b-o5auuj8gje] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background-color: #f5f5f5;
}

.overview-header h2[b-o5auuj8gje] {
    margin: 0;
    color: #333;
}

.add-painting-btn[b-o5auuj8gje] {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.add-painting-btn:hover[b-o5auuj8gje] {
    background-color: #229954;
}

.overview-stats[b-o5auuj8gje] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    background-color: #f5f5f5;
}

/* Upload Error Styles */
.upload-error[b-o5auuj8gje] {
    color: #d9534f;
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* Preview Image Styles */
.preview-image[b-o5auuj8gje] {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px 0;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* Modal Styles */
.modal-overlay[b-o5auuj8gje] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal-content[b-o5auuj8gje] {
    background-color: #f5f5f5;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-header[b-o5auuj8gje] {
    padding: 20px 30px;
    background-color: #f5f5f5;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-header h2[b-o5auuj8gje] {
    margin: 0;
    color: #333;
}
.close-btn[b-o5auuj8gje] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s;
}
.close-btn:hover[b-o5auuj8gje] {
    background-color: #e8e8e8;
}
.modal-body[b-o5auuj8gje] {
    padding: 30px;
    background-color: #f5f5f5;
}
.modal-footer[b-o5auuj8gje] {
    padding: 20px 30px;
    background-color: #f5f5f5;
    border-top: none;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}
.save-btn[b-o5auuj8gje], .cancel-btn[b-o5auuj8gje], .delete-btn[b-o5auuj8gje] {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2s;
}
.save-btn[b-o5auuj8gje] {
    background-color: #27ae60;
    color: white;
}
.save-btn:hover[b-o5auuj8gje] {
    background-color: #229954;
}
.cancel-btn[b-o5auuj8gje] {
    background-color: #95a5a6;
    color: white;
}
.cancel-btn:hover[b-o5auuj8gje] {
    background-color: #7f8c8d;
}
.delete-btn[b-o5auuj8gje] {
    background-color: #e74c3c;
    color: white;
}
.delete-btn:hover[b-o5auuj8gje] {
    background-color: #c0392b;
}

/* General Settings Layout */
.general-settings[b-o5auuj8gje] {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.5rem;
}
.general-item[b-o5auuj8gje] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}
.general-item > div:first-child[b-o5auuj8gje] {
    flex: 0 0 20%;
    max-width: 20%;
    color: #222;
    font-weight: 500;
    text-align: right;
    padding-right: 1.2rem;
    align-self: flex-start;
    /* For Home page: align label to top */
}
.general-item > div:last-child[b-o5auuj8gje] {
    flex: 1 1 80%;
    max-width: 80%;
    text-align: left;
}
.general-item input[b-o5auuj8gje],
.general-item select[b-o5auuj8gje] {
    width: 25%;
    min-width: 120px;
    max-width: 25%;
    height: 2.2em;
    border-radius: 7px;
    border: 1px solid #bbb;
    padding: 0.3em 0.7em;
    font-size: 1rem;
    transition: border-color 0.2s;
}
.general-item input[type="color"][b-o5auuj8gje] {
    width: 10%;
    min-width: 36px;
    max-width: 10%;
    height: 2.2em;
    border-radius: 7px;
    border: 1px solid #bbb;
    padding: 0.1em;
    background: none;
}
.general-item textarea[b-o5auuj8gje] {
    width: 90%;
    min-width: 180px;
    max-width: 90%;
    height: 10em;
    border-radius: 7px;
    border: 1px solid #bbb;
    padding: 0.5em 0.7em;
    font-size: 1rem;
    transition: border-color 0.2s;
    resize: vertical;
    box-sizing: border-box;
}
.general-item textarea:focus[b-o5auuj8gje] {
    border-color: #888;
    outline: none;
}
.general-item input[type="text"]:focus[b-o5auuj8gje],
.general-item input[type="email"]:focus[b-o5auuj8gje],
.general-item select:focus[b-o5auuj8gje],
.general-item input[type="color"]:focus[b-o5auuj8gje] {
    border-color: #888;
    outline: none;
}
/* /Pages/AdminAbandonedBaskets.razor.rz.scp.css */
.admin-abandoned-baskets-container[b-czunie4cav] {
    padding: 2% 10%;
    background: var(--background-color);
    color: var(--text-color);
    min-height: 70vh;
}

.admin-abandoned-baskets-container h1[b-czunie4cav] {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.all-baskets-section[b-czunie4cav] {
    padding: 1rem;
}

.loading-state[b-czunie4cav] {
    text-align: center;
    padding: 2rem;
    font-size: 1.2rem;
    color: var(--text-color);
}

.empty-state[b-czunie4cav] {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-color);
}

.admin-table[b-czunie4cav] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.admin-table th[b-czunie4cav],
.admin-table td[b-czunie4cav] {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
    background: rgba(255, 255, 255, 0.1);
    font-weight: bold;
    color: var(--text-color);[b-czunie4cav]
}

.admin-table tr:hover[b-czunie4cav] {
    background: rgba(255, 255, 255, 0.05);
}

.cart-items-list[b-czunie4cav] {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cart-items-list li[b-czunie4cav] {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.status-badge[b-czunie4cav] {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.status-active[b-czunie4cav] {
    background: #28a745;
    color: white;
}

.status-inactive[b-czunie4cav] {
    background: #ffc107;
    color: #333;
}

.status-closed[b-czunie4cav] {
    background: #6c757d;
    color: white;
}

.status-unknown[b-czunie4cav] {
    background: #dc3545;
    color: white;
}

.delete-btn-small[b-czunie4cav] {
    background: transparent;
    color: #dc3545;
    border: 1px solid #dc3545;
    border-radius: 4px;
    padding: 0.25rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.delete-btn-small:hover[b-czunie4cav] {
    background: #dc3545;
    color: white;
}

/* Modal Styles */
.modal-overlay[b-czunie4cav] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal-content[b-czunie4cav] {
    background-color: #f5f5f5;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-header[b-czunie4cav] {
    padding: 20px 30px;
    background-color: #f5f5f5;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-header h2[b-czunie4cav] {
    margin: 0;
    color: #333;
}
.close-btn[b-czunie4cav] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s;
}
.close-btn:hover[b-czunie4cav] {
    background-color: #e8e8e8;
}
.modal-body[b-czunie4cav] {
    padding: 30px;
    background-color: #f5f5f5;
}
.modal-footer[b-czunie4cav] {
    padding: 20px 30px;
    background-color: #f5f5f5;
    border-top: none;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}
.save-btn[b-czunie4cav], .cancel-btn[b-czunie4cav], .delete-btn[b-czunie4cav] {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2s;
}
.save-btn[b-czunie4cav] {
    background-color: #27ae60;
    color: white;
}
.save-btn:hover[b-czunie4cav] {
    background-color: #229954;
}
.cancel-btn[b-czunie4cav] {
    background-color: #95a5a6;
    color: white;
}
.cancel-btn:hover[b-czunie4cav] {
    background-color: #7f8c8d;
}
.delete-btn[b-czunie4cav] {
    background-color: #e74c3c;
    color: white;
}
.delete-btn:hover[b-czunie4cav] {
    background-color: #c0392b;
}

.admin-menu-font[b-czunie4cav] {
    font-family: var(--admin-menu-font-family, 'Segoe UI', Arial, sans-serif);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--text-color);
}

.admin-table[b-czunie4cav], .admin-table th[b-czunie4cav], .admin-table td[b-czunie4cav], .admin-table ul[b-czunie4cav], .admin-table li[b-czunie4cav] {
    /* font-family, font-size, color now in app.css */
}
/* /Pages/AdminManagePaintings.razor.rz.scp.css */
/* Table, thumbnail, and action button styles for ManagePaintings */
.admin-table th[b-5ug23vju10], .admin-table td[b-5ug23vju10] {
	padding-left: 18px;
	padding-right: 18px;
}
.admin-thumbnail-img[b-5ug23vju10] {
	height: 60px;
	width: auto;
	object-fit: contain;
	max-width: 100%;
	display: inline-block;
	border-radius: 4px;
}
.admin-add-btn[b-5ug23vju10], .icon-btn[b-5ug23vju10], .edit-btn[b-5ug23vju10], .delete-btn[b-5ug23vju10] {
	border-radius: 999px;
	background: #fff;
	border: 2px solid #007bff;
	color: #007bff;
	padding: 6px 20px;
	font-weight: 500;
	font-size: 1rem;
	box-shadow: none;
	outline: none;
	transition: background 0.2s, color 0.2s, border 0.2s;
}
.admin-add-btn:hover[b-5ug23vju10], .icon-btn:hover[b-5ug23vju10], .edit-btn:hover[b-5ug23vju10], .delete-btn:hover[b-5ug23vju10] {
	background: #e6f0fa;
	color: #0056b3;
	border-color: #0056b3;
}
.admin-add-btn svg[b-5ug23vju10], .icon-btn svg[b-5ug23vju10], .edit-btn svg[b-5ug23vju10], .delete-btn svg[b-5ug23vju10] {
	display: none;
}
.edit-btn[b-5ug23vju10], .delete-btn[b-5ug23vju10] {
	background: none;
	border: none;
	box-shadow: none;
	outline: none;
	padding: 0;
	margin: 0 4px;
	border-radius: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 0;
	cursor: pointer;
}
.edit-btn svg[b-5ug23vju10] {
	color: #007bff;
	width: 22px;
	height: 22px;
	transition: color 0.2s;
	fill: currentColor;
	display: inline;
}
.edit-btn:hover svg[b-5ug23vju10] {
	color: #0056b3;
}
.delete-btn svg[b-5ug23vju10] {
	color: #dc3545;
	width: 22px;
	height: 22px;
	transition: color 0.2s;
	fill: currentColor;
	display: inline;
}
.delete-btn:hover svg[b-5ug23vju10] {
	color: #a71d2a;
}
.edit-btn span[b-5ug23vju10], .delete-btn span[b-5ug23vju10] {
	display: none;
}
.action-buttons[b-5ug23vju10] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}
/* /Pages/AdminManagePrints.razor.rz.scp.css */
/* Table, thumbnail, and action button styles for ManagePrints */
.admin-table th[b-tsttpnshnh], .admin-table td[b-tsttpnshnh] {
	padding-left: 18px;
	padding-right: 18px;
}
.admin-thumbnail-img[b-tsttpnshnh] {
	height: 60px;
	width: auto;
	object-fit: contain;
	max-width: 100%;
	display: inline-block;
	border-radius: 4px;
}
.admin-add-btn[b-tsttpnshnh], .icon-btn[b-tsttpnshnh], .edit-btn[b-tsttpnshnh], .delete-btn[b-tsttpnshnh] {
	border-radius: 999px;
	background: #fff;
	border: 2px solid #007bff;
	color: #007bff;
	padding: 6px 20px;
	font-weight: 500;
	font-size: 1rem;
	box-shadow: none;
	outline: none;
	transition: background 0.2s, color 0.2s, border 0.2s;
}
.admin-add-btn:hover[b-tsttpnshnh], .icon-btn:hover[b-tsttpnshnh], .edit-btn:hover[b-tsttpnshnh], .delete-btn:hover[b-tsttpnshnh] {
	background: #e6f0fa;
	color: #0056b3;
	border-color: #0056b3;
}
.admin-add-btn svg[b-tsttpnshnh], .icon-btn svg[b-tsttpnshnh], .edit-btn svg[b-tsttpnshnh], .delete-btn svg[b-tsttpnshnh] {
	display: none;
}
.edit-btn[b-tsttpnshnh], .delete-btn[b-tsttpnshnh] {
	background: none;
	border: none;
	box-shadow: none;
	outline: none;
	padding: 0;
	margin: 0 4px;
	border-radius: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 0;
	cursor: pointer;
}
.edit-btn svg[b-tsttpnshnh] {
	color: #007bff;
	width: 22px;
	height: 22px;
	transition: color 0.2s;
	fill: currentColor;
	display: inline;
}
.edit-btn:hover svg[b-tsttpnshnh] {
	color: #0056b3;
}
.delete-btn svg[b-tsttpnshnh] {
	color: #dc3545;
	width: 22px;
	height: 22px;
	transition: color 0.2s;
	fill: currentColor;
	display: inline;
}
.delete-btn:hover svg[b-tsttpnshnh] {
	color: #a71d2a;
}
.edit-btn span[b-tsttpnshnh], .delete-btn span[b-tsttpnshnh] {
	display: none;
}
.action-buttons[b-tsttpnshnh] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}
/* /Pages/AdminManagePrintTypes.razor.rz.scp.css */
.admin-table th[b-cbhce31qp9], .admin-table td[b-cbhce31qp9] {
	padding-left: 18px;
	padding-right: 18px;
}
.admin-add-btn[b-cbhce31qp9], .icon-btn[b-cbhce31qp9], .edit-btn[b-cbhce31qp9], .delete-btn[b-cbhce31qp9] {
	border-radius: 999px;
	background: #fff;
	border: 2px solid #007bff;
	color: #007bff;
	padding: 6px 20px;
	font-weight: 500;
	font-size: 1rem;
	box-shadow: none;
	outline: none;
	transition: background 0.2s, color 0.2s, border 0.2s;
}
.admin-add-btn:hover[b-cbhce31qp9], .icon-btn:hover[b-cbhce31qp9], .edit-btn:hover[b-cbhce31qp9], .delete-btn:hover[b-cbhce31qp9] {
	background: #e6f0fa;
	color: #0056b3;
	border-color: #0056b3;
}
.admin-add-btn svg[b-cbhce31qp9], .icon-btn svg[b-cbhce31qp9], .edit-btn svg[b-cbhce31qp9], .delete-btn svg[b-cbhce31qp9] {
	display: none;
}
.edit-btn[b-cbhce31qp9], .delete-btn[b-cbhce31qp9] {
	background: none;
	border: none;
	box-shadow: none;
	outline: none;
	padding: 0;
	margin: 0 4px;
	border-radius: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 0;
	cursor: pointer;
}
.edit-btn svg[b-cbhce31qp9] {
	color: #007bff;
	width: 22px;
	height: 22px;
	transition: color 0.2s;
	fill: currentColor;
	display: inline;
}
.edit-btn:hover svg[b-cbhce31qp9] {
	color: #0056b3;
}
.delete-btn svg[b-cbhce31qp9] {
	color: #dc3545;
	width: 22px;
	height: 22px;
	transition: color 0.2s;
	fill: currentColor;
	display: inline;
}
.delete-btn:hover svg[b-cbhce31qp9] {
	color: #a71d2a;
}
.edit-btn span[b-cbhce31qp9], .delete-btn span[b-cbhce31qp9] {
	display: none;
}
.action-buttons[b-cbhce31qp9] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}
/* /Pages/AdminManageSeries.razor.rz.scp.css */
.admin-table th[b-d54slngh5k], .admin-table td[b-d54slngh5k] {
	padding-left: 18px;
	padding-right: 18px;
}
.admin-add-btn[b-d54slngh5k], .icon-btn[b-d54slngh5k], .edit-btn[b-d54slngh5k], .delete-btn[b-d54slngh5k] {
	border-radius: 999px;
	background: #fff;
	border: 2px solid #007bff;
	color: #007bff;
	padding: 6px 20px;
	font-weight: 500;
	font-size: 1rem;
	box-shadow: none;
	outline: none;
	transition: background 0.2s, color 0.2s, border 0.2s;
}
.admin-add-btn:hover[b-d54slngh5k], .icon-btn:hover[b-d54slngh5k], .edit-btn:hover[b-d54slngh5k], .delete-btn:hover[b-d54slngh5k] {
	background: #e6f0fa;
	color: #0056b3;
	border-color: #0056b3;
}
.admin-add-btn svg[b-d54slngh5k], .icon-btn svg[b-d54slngh5k], .edit-btn svg[b-d54slngh5k], .delete-btn svg[b-d54slngh5k] {
	display: none;
}
.edit-btn[b-d54slngh5k], .delete-btn[b-d54slngh5k] {
	background: none;
	border: none;
	box-shadow: none;
	outline: none;
	padding: 0;
	margin: 0 4px;
	border-radius: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 0;
	cursor: pointer;
}
.edit-btn svg[b-d54slngh5k] {
	color: #007bff;
	width: 22px;
	height: 22px;
	transition: color 0.2s;
	fill: currentColor;
	display: inline;
}
.edit-btn:hover svg[b-d54slngh5k] {
	color: #0056b3;
}
.delete-btn svg[b-d54slngh5k] {
	color: #dc3545;
	width: 22px;
	height: 22px;
	transition: color 0.2s;
	fill: currentColor;
	display: inline;
}
.delete-btn:hover svg[b-d54slngh5k] {
	color: #a71d2a;
}
.edit-btn span[b-d54slngh5k], .delete-btn span[b-d54slngh5k] {
	display: none;
}
.action-buttons[b-d54slngh5k] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}
/* /Pages/AdminPaintingForm.razor.rz.scp.css */
/* Required field styling */
.required[b-z1l3w7j6h6] {
    color: #dc3545;
    font-weight: bold;
    margin-left: 2px;
}

/* Upload area styling */
.upload-area[b-z1l3w7j6h6] {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f8f9fa;
    margin-bottom: 8px;
    position: relative;
}

.upload-area:hover[b-z1l3w7j6h6] {
    border-color: #adb5bd;
    background: #e9ecef;
}

.upload-area.dragover[b-z1l3w7j6h6] {
    border-color: #007bff;
    background: #e3f2fd;
    transform: scale(1.02);
}

/* File input styling */
.file-input[b-z1l3w7j6h6] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}

.upload-content[b-z1l3w7j6h6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    pointer-events: none;
}

.upload-icon[b-z1l3w7j6h6] {
    color: #222;
}

.upload-text[b-z1l3w7j6h6] {
    color: #222;
}

.upload-text p[b-z1l3w7j6h6] {
    margin: 0.25rem 0;
}

.upload-link[b-z1l3w7j6h6] {
    color: #222;
    text-decoration: underline;
    cursor: pointer;
}

.upload-hint[b-z1l3w7j6h6] {
    font-size: 0.875rem;
    color: #222;
}

/* Current image styling */
.current-image[b-z1l3w7j6h6] {
    margin-top: 10px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
    max-width: 300px;
}

.current-image img[b-z1l3w7j6h6] {
    width: 100%;
    height: auto;
    display: block;
    max-width: 120px;
    border-radius: 6px;
    margin-top: 8px;
}

/* Uploaded image info */
.uploaded-image[b-z1l3w7j6h6] {
    margin-top: 10px;
    padding: 0.5rem;
    background: #e3f2fd;
    border-radius: 4px;
    border: 1px solid #bbdefb;
    font-size: 0.95rem;
    color: #222;
}

.uploaded-image p[b-z1l3w7j6h6] {
    margin: 0;
    color: #222;
    font-size: 0.875rem;
}

/* Upload error styling */
.upload-error[b-z1l3w7j6h6] {
    margin-top: 10px;
    padding: 0.5rem;
    background: #f8d7da;
    border-radius: 4px;
    border: 1px solid #f5c6cb;
    color: #dc3545;
    font-size: 0.95rem;
    margin-top: 4px;
}

/* Modal styles */
.admin-modal-overlay[b-z1l3w7j6h6] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-modal-dialog[b-z1l3w7j6h6] {
    width: 90vw;
    max-width: 900px;
    max-height: 90vh;
    background: var(--admin-bg, #fff);
    color: #222;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 32px 40px;
    overflow-y: auto;
    font-family: var(--admin-font-family, inherit);
    display: flex;
    flex-direction: column;
}

.modal-header[b-z1l3w7j6h6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-header h2[b-z1l3w7j6h6] {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.modal-close-btn[b-z1l3w7j6h6] {
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    padding: 0 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.modal-close-btn:hover[b-z1l3w7j6h6] {
    background: #f0f0f0;
}

.modal-body[b-z1l3w7j6h6] {
    width: 100%;
}

.form-row[b-z1l3w7j6h6] {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 18px;
    gap: 24px;
}

.form-label[b-z1l3w7j6h6] {
    flex: 0 0 160px;
    font-weight: 500;
    color: #222;
    padding-top: 6px;
}

.form-input[b-z1l3w7j6h6] {
    color: #222;
    flex: 1 1 0;
}

input[type="text"][b-z1l3w7j6h6], input[type="number"][b-z1l3w7j6h6], select[b-z1l3w7j6h6], textarea[b-z1l3w7j6h6] {
    width: 100%;
    padding: 8px 12px;
    border: 1.5px solid #d0d7e2;
    border-radius: 6px;
    font-size: 1rem;
    color: #222;
    background: #fff;
    transition: border 0.2s;
}

input[type="text"]:focus[b-z1l3w7j6h6], input[type="number"]:focus[b-z1l3w7j6h6], select:focus[b-z1l3w7j6h6], textarea:focus[b-z1l3w7j6h6] {
    border-color: #007bff;
    outline: none;
}

.save-button[b-z1l3w7j6h6] {
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 8px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-right: 12px;
    transition: background 0.2s;
}

.save-button:disabled[b-z1l3w7j6h6] {
    background: #b3d1fa;
    cursor: not-allowed;
}

.save-button:hover:not(:disabled)[b-z1l3w7j6h6] {
    background: #0056b3;
}

.cancel-btn[b-z1l3w7j6h6] {
    background: #fff;
    color: #007bff;
    border: 2px solid #007bff;
    border-radius: 999px;
    padding: 8px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
}

.cancel-btn:hover[b-z1l3w7j6h6] {
    background: #e6f0fa;
    color: #0056b3;
    border-color: #0056b3;
}

/* Validation errors */
.validation-errors[b-z1l3w7j6h6] {
    background: #fff3f3;
    color: #b71c1c;
    border: 1.5px solid #f5c6cb;
    border-radius: 8px;
    padding: 12px 18px;
    margin-bottom: 18px;
}
/* /Pages/AdminPrintForm.razor.rz.scp.css */
/* Modal styles */
.admin-modal-overlay[b-beaimkkltw] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-modal-dialog[b-beaimkkltw] {
    width: 90vw;
    max-width: 900px;
    max-height: 90vh;
    background: var(--admin-bg, #fff);
    color: #222;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 32px 40px;
    overflow-y: auto;
    font-family: var(--admin-font-family, inherit);
    display: flex;
    flex-direction: column;
}

.modal-header[b-beaimkkltw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-header h2[b-beaimkkltw] {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.modal-close-btn[b-beaimkkltw] {
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    padding: 0 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.modal-close-btn:hover[b-beaimkkltw] {
    background: #f0f0f0;
}

.modal-body[b-beaimkkltw] {
    width: 100%;
}
/* Print Form Styles */
.print-form-container[b-beaimkkltw] {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-header[b-beaimkkltw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.form-header h1[b-beaimkkltw] {
    margin: 0;
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
}

.back-btn[b-beaimkkltw] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.2s ease;
}

.back-btn:hover[b-beaimkkltw] {
    background: #5a6268;
}

.form-content[b-beaimkkltw] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section[b-beaimkkltw] {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.print-form[b-beaimkkltw] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group[b-beaimkkltw] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label[b-beaimkkltw] {
    font-weight: 600;
    color: #495057;
    font-size: 0.95rem;
}

.required[b-beaimkkltw] {
    color: #dc3545;
    font-weight: bold;
}

.form-group input[b-beaimkkltw],
.form-group textarea[b-beaimkkltw],
.form-group select[b-beaimkkltw] {
    padding: 0.75rem;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    background: white;
}

.form-group input:focus[b-beaimkkltw],
.form-group textarea:focus[b-beaimkkltw],
.form-group select:focus[b-beaimkkltw] {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group textarea[b-beaimkkltw] {
    resize: vertical;
    min-height: 100px;
}

/* Upload area styling */
.upload-area[b-beaimkkltw] {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f8f9fa;
    margin-bottom: 1rem;
    position: relative;
}

.upload-area:hover[b-beaimkkltw] {
    border-color: #adb5bd;
    background: #e9ecef;
}

.upload-area.dragover[b-beaimkkltw] {
    border-color: #007bff;
    background: #e3f2fd;
    transform: scale(1.02);
}

/* File input styling */
.file-input[b-beaimkkltw] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}

.upload-content[b-beaimkkltw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    pointer-events: none;
}

.upload-icon[b-beaimkkltw] {
    color: #6c757d;
}

.upload-text p[b-beaimkkltw] {
    margin: 0.25rem 0;
    color: #6c757d;
}

.upload-hint[b-beaimkkltw] {
    font-size: 0.85rem;
    color: #adb5bd;
}

.uploaded-file[b-beaimkkltw] {
    background: #d4edda;
    color: #155724;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.upload-error[b-beaimkkltw] {
    background: #f8d7da;
    color: #721c24;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Checkbox styling */
.checkbox-label[b-beaimkkltw] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"][b-beaimkkltw] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.save-section[b-beaimkkltw] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.save-button[b-beaimkkltw] {
    padding: 0.875rem 2rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.save-button:hover:not(:disabled)[b-beaimkkltw] {
    background: #0056b3;
}

.save-button:disabled[b-beaimkkltw] {
    background: #6c757d;
    cursor: not-allowed;
}

.action-message[b-beaimkkltw] {
    padding: 1rem;
    border-radius: 6px;
    font-weight: 500;
    max-width: 100%;
}

.action-message.success[b-beaimkkltw] {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.action-message.error[b-beaimkkltw] {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .print-form-container[b-beaimkkltw] {
        padding: 1rem;
        margin: 1rem;
    }
    
    .form-header[b-beaimkkltw] {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .form-section[b-beaimkkltw] {
        padding: 1.5rem;
    }
} 
/* /Pages/AdminPrintTypeForm.razor.rz.scp.css */
/* Modal styles */
.admin-modal-overlay[b-gnbovhe7yh] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-modal-dialog[b-gnbovhe7yh] {
    width: 90vw;
    max-width: 900px;
    max-height: 90vh;
    background: var(--admin-bg, #fff);
    color: #222;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 32px 40px;
    overflow-y: auto;
    font-family: var(--admin-font-family, inherit);
    display: flex;
    flex-direction: column;
}

.modal-header[b-gnbovhe7yh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-header h2[b-gnbovhe7yh] {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.modal-close-btn[b-gnbovhe7yh] {
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    padding: 0 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.modal-close-btn:hover[b-gnbovhe7yh] {
    background: #f0f0f0;
}

.modal-body[b-gnbovhe7yh] {
    width: 100%;
}
/* Print Type Form Styles */
.print-type-form-container[b-gnbovhe7yh] {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-header[b-gnbovhe7yh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.form-header h1[b-gnbovhe7yh] {
    margin: 0;
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
}

.back-btn[b-gnbovhe7yh] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.2s ease;
}

.back-btn:hover[b-gnbovhe7yh] {
    background: #5a6268;
}

.form-content[b-gnbovhe7yh] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section[b-gnbovhe7yh] {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.print-type-form[b-gnbovhe7yh] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group[b-gnbovhe7yh] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label[b-gnbovhe7yh] {
    font-weight: 600;
    color: #495057;
    font-size: 0.95rem;
}

.required[b-gnbovhe7yh] {
    color: #dc3545;
    font-weight: bold;
}

.form-group input[b-gnbovhe7yh],
.form-group textarea[b-gnbovhe7yh],
.form-group select[b-gnbovhe7yh] {
    padding: 0.75rem;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    background: white;
}

.form-group input:focus[b-gnbovhe7yh],
.form-group textarea:focus[b-gnbovhe7yh],
.form-group select:focus[b-gnbovhe7yh] {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group textarea[b-gnbovhe7yh] {
    resize: vertical;
    min-height: 100px;
}

.save-section[b-gnbovhe7yh] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.save-button[b-gnbovhe7yh] {
    padding: 0.875rem 2rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.save-button:hover:not(:disabled)[b-gnbovhe7yh] {
    background: #0056b3;
}

.save-button:disabled[b-gnbovhe7yh] {
    background: #6c757d;
    cursor: not-allowed;
}

.action-message[b-gnbovhe7yh] {
    padding: 1rem;
    border-radius: 6px;
    font-weight: 500;
    max-width: 100%;
}

.action-message.success[b-gnbovhe7yh] {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.action-message.error[b-gnbovhe7yh] {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .print-type-form-container[b-gnbovhe7yh] {
        padding: 1rem;
        margin: 1rem;
    }
    
    .form-header[b-gnbovhe7yh] {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .form-section[b-gnbovhe7yh] {
        padding: 1.5rem;
    }
} 
/* /Pages/AdminSeriesForm.razor.rz.scp.css */
/* Modal styles (copied from painting form for consistency) */
.admin-modal-overlay[b-gqpwtu0hav] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-modal-dialog[b-gqpwtu0hav] {
    width: 90vw;
    max-width: 900px;
    max-height: 90vh;
    background: var(--admin-bg, #fff);
    color: #222;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 32px 40px;
    overflow-y: auto;
    font-family: var(--admin-font-family, inherit);
    display: flex;
    flex-direction: column;
}

.modal-header[b-gqpwtu0hav] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-header h2[b-gqpwtu0hav] {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    color: #222;
}

.modal-close-btn[b-gqpwtu0hav] {
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    padding: 0 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.modal-close-btn:hover[b-gqpwtu0hav] {
    background: #f0f0f0;
}

.modal-body[b-gqpwtu0hav] {
    width: 100%;
}

.form-row[b-gqpwtu0hav] {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 18px;
    gap: 24px;
}

.form-label[b-gqpwtu0hav] {
    flex: 0 0 160px;
    font-weight: 500;
    color: #222;
    padding-top: 6px;
}

.form-input[b-gqpwtu0hav] {
    color: #222;
    flex: 1 1 0;
}

input[type="text"][b-gqpwtu0hav], input[type="number"][b-gqpwtu0hav], select[b-gqpwtu0hav], textarea[b-gqpwtu0hav] {
    width: 100%;
    padding: 8px 12px;
    border: 1.5px solid #d0d7e2;
    border-radius: 6px;
    font-size: 1rem;
    color: #222;
    background: #fff;
    transition: border 0.2s;
}

input[type="text"]:focus[b-gqpwtu0hav], input[type="number"]:focus[b-gqpwtu0hav], select:focus[b-gqpwtu0hav], textarea:focus[b-gqpwtu0hav] {
    border-color: #007bff;
    outline: none;
}

.save-button[b-gqpwtu0hav] {
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 8px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-right: 12px;
    transition: background 0.2s;
}

.save-button:disabled[b-gqpwtu0hav] {
    background: #b3d1fa;
    cursor: not-allowed;
}

.save-button:hover:not(:disabled)[b-gqpwtu0hav] {
    background: #0056b3;
}

.cancel-btn[b-gqpwtu0hav] {
    background: #fff;
    color: #007bff;
    border: 2px solid #007bff;
    border-radius: 999px;
    padding: 8px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
}

.cancel-btn:hover[b-gqpwtu0hav] {
    background: #e6f0fa;
    color: #0056b3;
    border-color: #0056b3;
}

.validation-errors[b-gqpwtu0hav] {
    background: #fff3f3;
    color: #b71c1c;
    border: 1.5px solid #f5c6cb;
    border-radius: 8px;
    padding: 12px 18px;
    margin-bottom: 18px;
}
/* Series Form Styles */
.series-form-container[b-gqpwtu0hav] {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-header[b-gqpwtu0hav] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.form-header h1[b-gqpwtu0hav] {
    margin: 0;
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
}

.back-btn[b-gqpwtu0hav] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.2s ease;
}

.back-btn:hover[b-gqpwtu0hav] {
    background: #5a6268;
}

.form-content[b-gqpwtu0hav] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section[b-gqpwtu0hav] {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.series-form[b-gqpwtu0hav] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group[b-gqpwtu0hav] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label[b-gqpwtu0hav] {
    font-weight: 600;
    color: #495057;
    font-size: 0.95rem;
}

.required[b-gqpwtu0hav] {
    color: #dc3545;
    font-weight: bold;
}

.form-group input[b-gqpwtu0hav],
.form-group textarea[b-gqpwtu0hav],
.form-group select[b-gqpwtu0hav] {
    padding: 0.75rem;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    background: white;
}

.form-group input:focus[b-gqpwtu0hav],
.form-group textarea:focus[b-gqpwtu0hav],
.form-group select:focus[b-gqpwtu0hav] {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group textarea[b-gqpwtu0hav] {
    resize: vertical;
    min-height: 100px;
}

.save-section[b-gqpwtu0hav] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.save-button[b-gqpwtu0hav] {
    padding: 0.875rem 2rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.save-button:hover:not(:disabled)[b-gqpwtu0hav] {
    background: #0056b3;
}

.save-button:disabled[b-gqpwtu0hav] {
    background: #6c757d;
    cursor: not-allowed;
}

.action-message[b-gqpwtu0hav] {
    padding: 1rem;
    border-radius: 6px;
    font-weight: 500;
    max-width: 100%;
}

.action-message.success[b-gqpwtu0hav] {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.action-message.error[b-gqpwtu0hav] {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .series-form-container[b-gqpwtu0hav] {
        padding: 1rem;
        margin: 1rem;
    }
    
    .form-header[b-gqpwtu0hav] {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .form-section[b-gqpwtu0hav] {
        padding: 1.5rem;
    }
} 
/* /Pages/AdminSiteSettings.razor.rz.scp.css */
/* /Pages/Contact.razor.rz.scp.css */
.contact-center-wrapper[b-u83faksk3c] {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-form-group[b-u83faksk3c] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 1.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.contact-form-group label[b-u83faksk3c] {
    color: inherit !important;
    width: 100%;
    max-width: 1000px;
    min-width: 320px;
    text-align: left;
    margin-left: 0;
}
.contact-input[b-u83faksk3c] {
    width: 100%;
    max-width: 1000px;
    min-width: 320px;
    padding: 0.7em 1em;
    border-radius: 10px;
    border: 1.5px solid #ccc;
    font-size: 1.1rem;
    background: #fff;
    margin-top: 0.3em;
    box-sizing: border-box;
    color: inherit;
    transition: border-color 0.2s;
}
.contact-input:focus[b-u83faksk3c] {
    outline: none;
    border-color: var(--text-color, #e5c97b);
}
.contact-textarea[b-u83faksk3c] {
    min-height: 120px;
    resize: vertical;
}
.contact-submit-btn[b-u83faksk3c] {
    background: var(--text-color, #e5c97b);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.7em 2.2em;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5em;
    margin-bottom: 1em;
    align-self: flex-start;
    transition: background 0.2s;
}
.contact-submit-btn:hover[b-u83faksk3c] {
    background: #bfa14a;
}
.contact-result[b-u83faksk3c] {
    margin-top: 1em;
    color: var(--text-color, #2e7d32);
    font-weight: 500;
}

/* Contact Page Styles */
.contact-page-container[b-u83faksk3c] {
    padding: 2rem 10%;
    min-height: 70vh;
    background: var(--background-color);
    color: var(--text-color);
}
.contact-page-title[b-u83faksk3c] {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    width: 100%;
    max-width: 1200px;
    text-align: center;
    box-sizing: border-box;
}
.contact-page-content[b-u83faksk3c] {
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-page-content[b-u83faksk3c]{
    padding: 32px 10% 32px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* /Pages/Counter.razor.rz.scp.css */
/* /Pages/Index.razor.rz.scp.css */
.index-page-title[b-cn3zwo0jbe] {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--text-color, #222);
    width: 100%;
    text-align: left;
    box-sizing: border-box;
}

.index-about-title[b-cn3zwo0jbe] {
    font-size: 2.1rem;
    margin-bottom: 1.1rem;
    color: var(--text-color, #222);
    width: 100%;
    text-align: left;
    box-sizing: border-box;
    .index-page-title,
    .index-about-title {
        text-align: center !important;
    }
}
.section-content[b-cn3zwo0jbe] {

    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 32px 15% 32px 15%;
    box-sizing: border-box;
}


/* Welcome Section Responsive Layout */
#welcome-title[b-cn3zwo0jbe] {
    font-size: 2.88rem;
}

.welcome-content[b-cn3zwo0jbe] {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 32px 15% 32px 15%;
    box-sizing: border-box;
}
.welcome-text[b-cn3zwo0jbe] {
    flex: 0 0 50%;
    min-width: 0;
    align-self: flex-start;
    padding-right: 32px;
    text-align: left;
}
.welcome-image-container[b-cn3zwo0jbe] {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}
.welcome-image[b-cn3zwo0jbe] {
    max-height: 400px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}
.welcome-image-placeholder[b-cn3zwo0jbe] {
    width: 400px;
    height: 400px;
    background: #eee;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
}

/*carousel*/
.paintings-content[b-cn3zwo0jbe] {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 32px 15% 32px 15%;
}

.carousel-arrows-row[b-cn3zwo0jbe] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Swipe hint for carousel */
.carousel-swipe-hint[b-cn3zwo0jbe] {
    display: none;
    text-align: center;
    color: #888;
    font-size: 1.1em;
    user-select: none;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
}
.swipe-icon[b-cn3zwo0jbe] {
    font-size: 1.3em;
    margin-right: 0.3em;
}



.carousel-paintings[b-cn3zwo0jbe] {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    overflow-x: auto;
    background: var(--carousel-bg, #fff);
    max-width: 100vw;
    touch-action: pan-y;
    box-sizing: border-box;
}

/* Show 3 images per row in carousel except mobile */
.painting-card-link[b-cn3zwo0jbe] {
    flex: none;
    width: 30%;
    min-width: 0;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    height: calc((100vw - 4rem) / 3 * 4 / 3); /* 3 images, 2rem gap each side, 3:4 ratio */
    max-height: 520px;
}


.painting-image[b-cn3zwo0jbe] {
    width: 100%;
    height: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 12px;
    background: var(--carousel-bg, #fff);
    transition: width 0.2s, height 0.2s;
    display: block;
    margin: 0 auto;
    max-width: 380px;
    max-height: 520px;
}

/* Carousel arrows row styling */
.carousel-arrows-row[b-cn3zwo0jbe] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.carousel-arrow-btn[b-cn3zwo0jbe] {
    font-size: 2rem;
    font-weight: 700;
    border-width: 3px;
    border-style: solid;
    border-color: transparent;
    height: 40px;
    width: 40px;
    line-height: 36px;
}
.carousel-arrows-spacer[b-cn3zwo0jbe] {
    flex: 1 1 auto;
}
.carousel-paintings[b-cn3zwo0jbe] {
    display: flex;
    gap: 2.4rem;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    overflow: hidden;
}
.painting-meta[b-cn3zwo0jbe] {
    margin-top: 0.5em;
    text-align: center;
}
.painting-title[b-cn3zwo0jbe] {
    font-weight: bold;
    display: block;
    font-size: 1.2em;
    font-family: var(--font-family, inherit);
    color: var(--text-color, inherit);
}
.painting-year[b-cn3zwo0jbe] {
    font-size: 1.05em;
    font-family: var(--font-family, inherit);
    color: var(--text-color, inherit);
}
.painting-sold[b-cn3zwo0jbe] {
    display: block;
    color: #d9534f;
    font-size: 1em;
    margin-top: 0.2em;
    font-family: var(--font-family, inherit);
}
.painting-price-meta-mobile[b-cn3zwo0jbe] {
    display: none;
    font-family: var(--font-family, inherit);
    color: var(--text-color, inherit);
    font-size: 1em;
    margin-top: 0.2em;
}
.paintings-cta-row-wrapper[b-cn3zwo0jbe] {
    width: 100%;
    display: flex;
    align-items: center;
}
.see-all-paintings-link[b-cn3zwo0jbe] {
    color: #fff;
    font-size: 1.1rem;
    padding: 0.6em 1.8em;
    border-radius: 22px;
    font-weight: bold;
    text-decoration: none;
}


.painting-meta[b-cn3zwo0jbe] {
    margin-top: 0.5em;
    text-align: center;
}

.painting-title[b-cn3zwo0jbe] {
    font-weight: bold;
    display: block;
}

.painting-year[b-cn3zwo0jbe] {
    font-size: 0.95em;
}

/* Carousel arrow: thicker, longer, visually prominent */
.carousel-arrow[b-cn3zwo0jbe] {
    background: none;
    border: none;
    color: var(--text-color, #e5c97b);
    font-size: 2.8rem;
    cursor: pointer;
    padding: 0 1.2rem;
    z-index: 2;
    min-width: 64px;
    min-height: 64px;
    user-select: none;
    transition: color 0.2s;
    font-family: inherit;
    font-weight: 900;
    line-height: 1;
    align-self: center;
    text-shadow: 0 0 2px #fff, 0 0 6px #fff;
    /* Make arrow glyphs bolder visually */
    letter-spacing: 0.1em;
}

.carousel-arrow:hover[b-cn3zwo0jbe] {
    color: var(--hover-color);
}

.paintings-cta-row-wrapper[b-cn3zwo0jbe] {
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
}



.print-info[b-cn3zwo0jbe] {
    padding: 1rem;
    text-align: center;
}

/* About section */
.about-content[b-cn3zwo0jbe] {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 32px 15% 32px 15%;
}


.about-text[b-cn3zwo0jbe] {
    flex: 0 0 50%;
    min-width: 0;
    align-self: flex-start;
    padding-right: 32px;
    text-align: left;
}

.about-image-container[b-cn3zwo0jbe] {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.about-image[b-cn3zwo0jbe] {
    max-height: 400px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}

.about-image-placeholder[b-cn3zwo0jbe] {
    width: 120%;
    height: 480px;
    background: #eee;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
}



@media (max-width: 600px) {
    /* General section/content adjustments */
    .section-content[b-cn3zwo0jbe] {
        padding: 0 10% 0 10%;
    }
    /* Welcome section */
    #welcome-title[b-cn3zwo0jbe] {
        font-size: 2rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .welcome-content[b-cn3zwo0jbe] {
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        width: 100%;
        padding: 32px 15% 32px 15%;
    }
    .welcome-text[b-cn3zwo0jbe] {
        flex: none !important;
        width: 100% !important;
        padding-right: 0 !important;
        text-align: left;
    }
    .welcome-image-container[b-cn3zwo0jbe], .welcome-image[b-cn3zwo0jbe], .welcome-image-placeholder[b-cn3zwo0jbe] {
        display: none !important;
    }
    /* Hide carousel header in mobile */
    .paintings-header-row[b-cn3zwo0jbe] {
        display: none !important;
    }
    /* About section */
    .about-content-row[b-cn3zwo0jbe] {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        width: 100%;
    }
    .about-text[b-cn3zwo0jbe] {
        flex: none !important;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 32px 0 0 0;;
        font-size: 1.1rem;
        text-align: left;
    }
    .about-image-container[b-cn3zwo0jbe], .about-image[b-cn3zwo0jbe], .about-image-placeholder[b-cn3zwo0jbe] {
        display: none !important;
    }

    /* Carousel/paintings section */
    .carousel-swipe-hint[b-cn3zwo0jbe] {
        display: flex;
    }
    .carousel-arrow[b-cn3zwo0jbe] {
        display: none !important;
    }
    .carousel-paintings[b-cn3zwo0jbe] {
        gap: 0;
        padding: 0;
        background: var(--carousel-bg);
    }
    .painting-card-link[b-cn3zwo0jbe] {
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        height: auto;
        aspect-ratio: unset;
    }
    .painting-meta[b-cn3zwo0jbe] {
        text-align: center;
        background: none;
        position: static;
        z-index: auto;
        display: block !important;
        clear: both;
        margin-bottom: 2.2em;
    }
    .painting-price-meta-mobile[b-cn3zwo0jbe] {
        display: block !important;
        font-size: 1.1em;
        margin-top: 0.2em;
        font-weight: 600;
        font-family: var(--font-family, inherit);
        color: var(--text-color, inherit);
    }
    .painting-sold.painting-price-meta-mobile[b-cn3zwo0jbe] {
        color: #d9534f !important;
    }
    .painting-price-meta[b-cn3zwo0jbe] {
        display: none !important;
    }
    .painting-image[b-cn3zwo0jbe] {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 90vw;
        aspect-ratio: 3/4;
        object-fit: contain;
        display: block;
        border-radius: 12px;
        background: var(--carousel-bg);
    }
    /* CTA row */
    .paintings-cta-row-wrapper[b-cn3zwo0jbe] {
        justify-content: center !important;
    }
    .paintings-cta-row[b-cn3zwo0jbe] {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}
/* /Pages/PaintingDetail.razor.rz.scp.css */
/* Painting Detail Page Styles */
.painting-detail-container[b-n4dhtgzh3o] {
    background: var(--background-color);
    color: var(--text-color);
    padding: 2% 10%;
    min-height: 70vh;
}

.painting-detail-content[b-n4dhtgzh3o] {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.painting-image-section[b-n4dhtgzh3o] {
    flex: 1;
    max-width: 100%;
}

.painting-image-wrapper[b-n4dhtgzh3o] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;
    border-radius: 8px;
}

.painting-image-wrapper.zoomed[b-n4dhtgzh3o] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.painting-detail-image[b-n4dhtgzh3o] {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.painting-image-wrapper.zoomed .painting-detail-image[b-n4dhtgzh3o] {
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(1.1);
}

.painting-info-section[b-n4dhtgzh3o] {
    flex: 0 0 40%;
    max-width: 40%;
    padding-right: 1rem;
}

.painting-title[b-n4dhtgzh3o] {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-align: left;
}

.painting-details[b-n4dhtgzh3o] {
    margin-bottom: 2rem;
}

.detail-item[b-n4dhtgzh3o] {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.detail-label[b-n4dhtgzh3o] {
    font-weight: bold;
    color: var(--text-color);
}

.sold-badge-large[b-n4dhtgzh3o] {
    display: inline-block;
    background: var(--text-color);
    color: #111;
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.action-buttons[b-n4dhtgzh3o] {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.add-to-cart-button[b-n4dhtgzh3o] {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
    border-radius: 8px;
    padding: 0.8rem 2rem;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    flex: 1;
    min-width: 140px;
}

.add-to-cart-button:hover:not(:disabled)[b-n4dhtgzh3o] {
    background: var(--text-color);
    color: #111;
}

.add-to-cart-button:disabled[b-n4dhtgzh3o] {
    opacity: 0.6;
    cursor: not-allowed;
}

.buy-button[b-n4dhtgzh3o] {
    background: var(--text-color);
    color: #111;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 2rem;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
    flex: 1;
    min-width: 140px;
}

.buy-button:hover[b-n4dhtgzh3o] {
    background: var(--hover-color);
}

.related-prints-section[b-n4dhtgzh3o] {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.related-prints-title[b-n4dhtgzh3o] {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.related-prints-grid[b-n4dhtgzh3o] {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: flex-start;
}

.related-print-link[b-n4dhtgzh3o] {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.2s;
}

.related-print-link:hover[b-n4dhtgzh3o] {
    transform: translateY(-2px);
}

.related-print-image[b-n4dhtgzh3o] {
    width: 100%;
    max-width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.related-print-title[b-n4dhtgzh3o] {
    text-align: left;
    font-weight: bold;
    color: var(--text-color);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .painting-detail-content[b-n4dhtgzh3o] {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .painting-image-section[b-n4dhtgzh3o] {
        flex: none;
        max-width: 100%;
    }
    
    .painting-image-wrapper[b-n4dhtgzh3o] {
        height: 40vh;
        max-height: 40vh;
    }
    
    .painting-info-section[b-n4dhtgzh3o] {
        padding-left: 0;
    }
    
    .painting-title[b-n4dhtgzh3o] {
        font-size: 2rem;
    }
    
    .action-buttons[b-n4dhtgzh3o] {
        flex-direction: column;
    }
    
    .related-prints-grid[b-n4dhtgzh3o] {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .painting-detail-container[b-n4dhtgzh3o] {
        padding: 2% 5%;
    }
    .painting-detail-content[b-n4dhtgzh3o] {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .painting-image-section[b-n4dhtgzh3o] {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1.2rem;
    }
    .painting-image-wrapper[b-n4dhtgzh3o] {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 60vw;
        max-height: 80vw;
        padding-left: 6vw;
        padding-right: 6vw;
        display: flex;
        justify-content: center;
        align-items: center;
    background: var(--background-color);
        border-radius: 0;
    }
    .painting-detail-image[b-n4dhtgzh3o] {
        width: 100%;
        max-width: 100%;
        min-height: 60vw;
        max-height: 80vw;
        height: auto;
        object-fit: cover;
        display: block;
        margin: 0;
        border-radius: 0;
    background: var(--background-color);
        box-shadow: none;
    }
    .painting-info-section[b-n4dhtgzh3o] {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
        text-align: left;
    }
    .painting-title[b-n4dhtgzh3o] {
        font-size: 1.8rem;
        text-align: left;
        width: 100%;
    }
        .painting-info-section[b-n4dhtgzh3o] {
            width: 100%;
            max-width: 100%;
            padding: 0 6vw;
            margin: 0 auto;
            text-align: left;
        }
    .related-prints-grid[b-n4dhtgzh3o] {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.8rem;
    }
    .related-print-image[b-n4dhtgzh3o] {
        height: 120px;
    }
} 
/* /Pages/Paintings.razor.rz.scp.css */
/* Default: 3 columns for desktop/tablet */
.paintings-grid[b-6g7bqqqn3k] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    width: 100%;
}
.filters-header.compact-filters[b-6g7bqqqn3k] {
    min-height: 48px;
    transition: min-height 0.2s;
}
@media (max-width: 600px) {
    .filters-bar-row[b-6g7bqqqn3k],
    .filters-sidebar[b-6g7bqqqn3k],
    .filters-header.compact-filters[b-6g7bqqqn3k] {
        display: none !important;
    }
    .filters-header.compact-filters[b-6g7bqqqn3k] {
        min-height: 56px;
    }
}
@media (max-width: 600px) {
    .page-header[b-6g7bqqqn3k] {
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .page-header h1[b-6g7bqqqn3k], .paintings-page-title[b-6g7bqqqn3k] {
        font-size: 2rem !important;
        text-align: center !important;
        margin: 0 auto 1.2rem auto !important;
        width: 100%;
    }
    .filters-bar-row[b-6g7bqqqn3k] {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
    }
    .filter-toggle-btn[b-6g7bqqqn3k] {
        margin-right: 0;
        margin-bottom: 0.8rem;
    }
    .filters-header.compact-filters[b-6g7bqqqn3k] {
        width: 100%;
        justify-content: center;
    }
}
.filter-toggle-btn[b-6g7bqqqn3k] {
    margin-right: 1.2rem;
}
/* Unified section padding for content-section */
.content-section[b-6g7bqqqn3k] {
    padding: 32px 10% 32px 10%;
}
/* Ensure filters bar row inherits section-content padding for alignment */
/* filters-bar-row only for structure, not spacing */
.filters-bar-row[b-6g7bqqqn3k] {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
/* Page header inherits section-content padding for unified alignment */
.page-header[b-6g7bqqqn3k] {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    /* No padding here; section-content provides horizontal padding */
}
.page-header h1[b-6g7bqqqn3k] {
    margin-bottom: 0;
}

/* Compact horizontal filters */
.compact-filters[b-6g7bqqqn3k] {
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
    margin: 1.2rem 0 1.5rem 0;
    flex-wrap: wrap;
}
.compact-filters label[b-6g7bqqqn3k] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.98rem;
    margin-bottom: 0;
    font-weight: 500;
}
.compact-select[b-6g7bqqqn3k] {
    min-width: 70px;
    max-width: 110px;
    font-size: 0.98rem;
    padding: 2px 6px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: none;
}
.compact-input[b-6g7bqqqn3k] {
    width: 60px;
    font-size: 0.98rem;
    padding: 2px 6px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: none;
}
.compact-filters .clear-filters-btn[b-6g7bqqqn3k] {
    margin-left: 0.8rem;
    font-size: 0.95rem;
    padding: 2px 10px;
}
/* Responsive grid for paintings page */
.painting-price[b-6g7bqqqn3k] {
    font-size: 1.1em;
    font-weight: 600;
    margin-top: 0.3em;
    letter-spacing: 0.5px;
}
 .sold-label[b-6g7bqqqn3k] {
    color: #e5c97b;
    font-weight: 600;
    /* Inherit font-size from .painting-price */
    margin-top: 0.3em;
    letter-spacing: 0.5px;
}


.painting-image-container[b-6g7bqqqn3k] {
    width: 85%;
    aspect-ratio: 3/4;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0.5em;
}

.painting-image[b-6g7bqqqn3k] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    aspect-ratio: 3/4;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
    background: #fff;
}

@media (max-width: 900px) {
    .paintings-grid[b-6g7bqqqn3k] {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .paintings-grid[b-6g7bqqqn3k] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .page-header[b-6g7bqqqn3k] {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* Paintings Page & Filter Styles */
.filter-toggle-btn[b-6g7bqqqn3k] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid var(--text-color, #e5c97b);
    border-radius: 6px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.filter-toggle-btn:hover[b-6g7bqqqn3k] {
    background: var(--text-color, #e5c97b);
    color: #333 !important;
}

.filters-header h3[b-6g7bqqqn3k] {
    margin: 0;
    color: var(--text-color);
    font-size: 1.1rem;
}

.clear-filters-btn[b-6g7bqqqn3k] {
    background: none;
    border: none;
    color: var(--text-color, #e5c97b);
    cursor: pointer;
    font-size: 0.8rem;
    text-decoration: underline;
}

.clear-filters-btn:hover[b-6g7bqqqn3k] {
    opacity: 0.8;
}

.filter-group[b-6g7bqqqn3k] {
    margin-bottom: 1.5rem;
}

.filter-group label[b-6g7bqqqn3k] {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-group select[b-6g7bqqqn3k],
.filter-group input[b-6g7bqqqn3k] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 0.9rem;
}

.filter-group select:focus[b-6g7bqqqn3k],
.filter-group input:focus[b-6g7bqqqn3k] {
    outline: none;
    border-color: var(--text-color, #e5c97b);
}

.price-inputs[b-6g7bqqqn3k] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-inputs input[b-6g7bqqqn3k] {
    flex: 1;
    width: auto;
}

.price-inputs span[b-6g7bqqqn3k] {
    color: var(--text-color);
    font-size: 0.9rem;
}


/* Section content for unified padding */
.section-content[b-6g7bqqqn3k] {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 32px 15% 32px 15%;
    box-sizing: border-box;
    gap: 1.2rem;
}

/* Add spacing for children of section-content (header, filters, grid) */
.section-content > .page-header[b-6g7bqqqn3k],
.section-content > .filters-bar-row[b-6g7bqqqn3k],
.section-content > .paintings-list-content[b-6g7bqqqn3k] {
    margin-bottom: 1.2rem;
}
.section-content > .filters-bar-row[b-6g7bqqqn3k] {
    padding-top: 1.2rem;
}


.sold-badge[b-6g7bqqqn3k] {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e5c97b;
    color: #111;
    border-radius: 20px;
    padding: 0.2em 1em;
    font-weight: bold;
    font-size: 0.9em;
}


/* Paintings Carousel Layout */
.painting-link[b-6g7bqqqn3k] {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.painting-image-container[b-6g7bqqqn3k] {
    position: relative;
    width: 100%;
    height: 370px;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
.painting-image[b-6g7bqqqn3k] {
    max-height: 370px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}
.painting-title[b-6g7bqqqn3k] {
    margin-top: 0.5em;
    font-weight: bold;
    text-align: center;
    flex-grow: 1;
}
/* Remove left padding, rely on section-content for unified layout */
.paintings-header-row[b-6g7bqqqn3k] {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding-left: 0;
}
/* Remove horizontal padding, rely on section-content for unified layout */
.carousel-row[b-6g7bqqqn3k] {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.carousel-arrow.carousel-arrow-left[b-6g7bqqqn3k] {
    align-self: flex-start;
    margin-right: 1rem;
}
.carousel-arrow.carousel-arrow-right[b-6g7bqqqn3k] {
    align-self: flex-start;
    margin-left: 1rem;
    margin-right: 0;
}
 .carousel-paintings[b-6g7bqqqn3k] {
    flex: 1 1 0;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: hidden;
    max-width: 100%;
}
.see-all-paintings-link.gold-btn:hover[b-6g7bqqqn3k] {
    background: #cdad5d;
    color: #111;
}
.carousel-arrow[b-6g7bqqqn3k] {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 2.2rem;
    cursor: pointer;
    padding: 0 0.5rem;
    z-index: 2;
    min-width: 44px;
    min-height: 44px;
    user-select: none;
    transition: color 0.2s;
    font-family: inherit;
    font-weight: bold;
    line-height: 1;
}
.carousel-arrow:hover[b-6g7bqqqn3k] {
    color: var(--hover-color);
}

/* Paintings Table Styles */
.paintings-table[b-6g7bqqqn3k] {
    width: 100%;
    border-collapse: collapse;
    background-color: #f5f5f5;
}

.paintings-table th[b-6g7bqqqn3k] {
    background-color: #f5f5f5;
    color: #333;
    font-weight: 600;
    text-align: left;
    padding: 15px;
    border: none;
}

/* Form Group Styles */
.form-group[b-6g7bqqqn3k] {
    margin-bottom: 20px;
}
.form-group label[b-6g7bqqqn3k] {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}
.form-group input[b-6g7bqqqn3k],
.form-group textarea[b-6g7bqqqn3k],
.form-group select[b-6g7bqqqn3k] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    background-color: white;
}
.form-group input:focus[b-6g7bqqqn3k],
.form-group textarea:focus[b-6g7bqqqn3k],
.form-group select:focus[b-6g7bqqqn3k] {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}
.validation-errors[b-6g7bqqqn3k] {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}
.validation-errors h4[b-6g7bqqqn3k] {
    margin: 0 0 10px 0;
    color: #721c24;
}
.validation-errors ul[b-6g7bqqqn3k] {
    margin: 0;
    padding-left: 20px;
}
.upload-error[b-6g7bqqqn3k] {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}
.upload-error h4[b-6g7bqqqn3k] {
    margin: 0 0 10px 0;
    color: #721c24;
}
.current-image[b-6g7bqqqn3k] {
    margin-top: 10px;
}
.current-image img[b-6g7bqqqn3k] {
    max-width: 200px;
    max-height: 200px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

/* No Paintings Styles */
.no-paintings[b-6g7bqqqn3k] {
    text-align: center;
    padding: 40px;
    background-color: #f5f5f5;
}

.no-paintings p[b-6g7bqqqn3k] {
    color: #666;
    font-size: 1.1rem;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .carousel-paintings[b-6g7bqqqn3k] {
        gap: 1rem;
    }
    .painting-card[b-6g7bqqqn3k] {
        max-width: 250px;
    }
}
@media (max-width: 900px) {
    .carousel-paintings[b-6g7bqqqn3k] {
        gap: 0.5rem;
    }
    .painting-card[b-6g7bqqqn3k] {
        max-width: 180px;
    }
    .painting-image-container[b-6g7bqqqn3k] {
        height: 220px;
    }
    .painting-image[b-6g7bqqqn3k] {
        max-height: 220px;
    }
}
@media (max-width: 600px) {
    .carousel-paintings[b-6g7bqqqn3k] {
        gap: 0.2rem;
    }
    .painting-card[b-6g7bqqqn3k] {
        max-width: 120px;
    }
    .painting-image-container[b-6g7bqqqn3k] {
        width: 100%;
        aspect-ratio: 3/4;
        height: auto;
        min-height: 70vw;
        max-height: 100vw;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 0.5em;
    }
    .painting-image[b-6g7bqqqn3k] {
        width: 100%;
        height: 100%;
        aspect-ratio: 3/4;
        object-fit: cover;
        border-radius: 12px;
        display: block;
        margin: 0 auto;
        background: #fff;
        min-height: 70vw;
        max-height: 100vw;
    }
    .paintings-page-container[b-6g7bqqqn3k] {
        padding: 1rem 3%;
    }
    .paintings-page-title[b-6g7bqqqn3k],
    .painting-title[b-6g7bqqqn3k] {
        font-size: 1.2rem;
    }
    .painting-price[b-6g7bqqqn3k] {
        font-size: 1rem;
    }
}

/* /Pages/PrintDetail.razor.rz.scp.css */
/* Print Detail Page Styles */
.print-detail-container[b-c6vuhsnq8t] {
    background: var(--background-color);
    color: var(--text-color);
    padding: 2% 10%;
    min-height: 70vh;
}

.print-detail-content[b-c6vuhsnq8t] {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.print-image-section[b-c6vuhsnq8t] {
    flex: 1;
    max-width: 100%;
}

.print-image-wrapper[b-c6vuhsnq8t] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;
    border-radius: 8px;
}

.print-image-wrapper.zoomed[b-c6vuhsnq8t] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.print-detail-image[b-c6vuhsnq8t] {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.print-image-wrapper.zoomed .print-detail-image[b-c6vuhsnq8t] {
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(1.1);
}

.print-info-section[b-c6vuhsnq8t] {
    flex: 0 0 40%;
    max-width: 40%;
    padding-right: 1rem;
}

.print-title[b-c6vuhsnq8t] {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-align: left;
}

.print-details[b-c6vuhsnq8t] {
    margin-bottom: 2rem;
}

.detail-item[b-c6vuhsnq8t] {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.detail-label[b-c6vuhsnq8t] {
    font-weight: bold;
    color: var(--text-color);
}

.sold-out-badge-large[b-c6vuhsnq8t] {
    display: inline-block;
    background: var(--text-color);
    color: #111;
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.action-buttons[b-c6vuhsnq8t] {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.add-to-cart-button[b-c6vuhsnq8t] {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
    border-radius: 8px;
    padding: 0.8rem 2rem;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    flex: 1;
    min-width: 140px;
}

.add-to-cart-button:hover:not(:disabled)[b-c6vuhsnq8t] {
    background: var(--text-color);
    color: #111;
}

.add-to-cart-button:disabled[b-c6vuhsnq8t] {
    opacity: 0.6;
    cursor: not-allowed;
}

.buy-button[b-c6vuhsnq8t] {
    background: var(--text-color);
    color: #111;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 2rem;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
    flex: 1;
    min-width: 140px;
}

.buy-button:hover[b-c6vuhsnq8t] {
    background: var(--hover-color);
}

.related-painting-section[b-c6vuhsnq8t] {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.related-painting-title[b-c6vuhsnq8t] {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.related-painting-link[b-c6vuhsnq8t] {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.2s;
}

.related-painting-link:hover[b-c6vuhsnq8t] {
    transform: translateY(-2px);
}

.related-painting-image[b-c6vuhsnq8t] {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.related-painting-title-text[b-c6vuhsnq8t] {
    text-align: left;
    font-weight: bold;
    color: var(--text-color);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .print-detail-content[b-c6vuhsnq8t] {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .print-image-section[b-c6vuhsnq8t] {
        flex: none;
        max-width: 100%;
    }
    
    .print-image-wrapper[b-c6vuhsnq8t] {
        height: 40vh;
        max-height: 40vh;
    }
    
    .print-info-section[b-c6vuhsnq8t] {
        padding-left: 0;
    }
    
    .print-title[b-c6vuhsnq8t] {
        font-size: 2rem;
    }
    
    .action-buttons[b-c6vuhsnq8t] {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .print-detail-container[b-c6vuhsnq8t] {
        padding: 2% 5%;
    }
    
    .print-image-wrapper[b-c6vuhsnq8t] {
        height: 30vh;
        max-height: 30vh;
    }
    
    .print-title[b-c6vuhsnq8t] {
        font-size: 1.8rem;
    }
    
    .related-painting-image[b-c6vuhsnq8t] {
        max-width: 250px;
        height: 150px;
    }
} 
/* /Pages/Prints.razor.rz.scp.css */
.print-image-container[b-93qmejf3sg] {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
.print-image[b-93qmejf3sg] {
    max-height: 300px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}
}

.filters-bar-row[b-93qmejf3sg] {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    padding-top: 1.2rem;
}
.compact-filters[b-93qmejf3sg] {
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.compact-filters label[b-93qmejf3sg] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.98rem;
    margin-bottom: 0;
    font-weight: 500;
}
.compact-select[b-93qmejf3sg] {
    min-width: 70px;
    max-width: 110px;
    font-size: 0.98rem;
    padding: 2px 6px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: none;
}
.compact-input[b-93qmejf3sg] {
    width: 60px;
    font-size: 0.98rem;
    padding: 2px 6px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: none;
}
.compact-filters .clear-filters-btn[b-93qmejf3sg] {
    margin-left: 0.8rem;
    font-size: 0.95rem;
    padding: 2px 10px;
}
.print-info[b-93qmejf3sg] {
    text-align: center;
}
.sold-label[b-93qmejf3sg] {
    font-weight: 600;
    font-size: 1.1em;
    margin-top: 0.3em;
    letter-spacing: 0.5px;
}
/* Prints Page Styles */

@media (max-width: 600px) {
    .filters-bar-row[b-93qmejf3sg],
    .filters-sidebar[b-93qmejf3sg],
    .filters-header.compact-filters[b-93qmejf3sg] {
        display: none !important;
    }
    .prints-page-container[b-93qmejf3sg] {
        padding: 1rem 3%;
    }
    .prints-page-title[b-93qmejf3sg],
    .print-title[b-93qmejf3sg] {
        font-size: 1.2rem;
    }
    .print-price[b-93qmejf3sg] {
        font-size: 1rem;
    }
}

/* Prints Page & Filter Styles */
.page-header[b-93qmejf3sg] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    .page-header[b-93qmejf3sg] {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

.page-content[b-93qmejf3sg] {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.filters-sidebar[b-93qmejf3sg] {
    width: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.filters-sidebar:not(.expanded)[b-93qmejf3sg] {
    display: none;
}

.filters-header[b-93qmejf3sg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filters-header h3[b-93qmejf3sg] {
    margin: 0;
    color: var(--text-color);
    font-size: 1.1rem;
}

.clear-filters-btn[b-93qmejf3sg] {
    background: none;
    border: none;
    color: var(--text-color, #e5c97b);
    cursor: pointer;
    font-size: 0.8rem;
    text-decoration: underline;
}

.clear-filters-btn:hover[b-93qmejf3sg] {
    opacity: 0.8;
}

.filter-group[b-93qmejf3sg] {
    margin-bottom: 1.5rem;
}

.filter-group label[b-93qmejf3sg] {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-group select[b-93qmejf3sg],
.filter-group input[b-93qmejf3sg] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 0.9rem;
}

.filter-group select:focus[b-93qmejf3sg],
.filter-group input:focus[b-93qmejf3sg] {
    outline: none;
    border-color: var(--text-color, #e5c97b);
}

.price-inputs[b-93qmejf3sg] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-inputs input[b-93qmejf3sg] {
    flex: 1;
    width: auto;
}

.price-inputs span[b-93qmejf3sg] {
    color: var(--text-color);
    font-size: 0.9rem;
}

.prints-content[b-93qmejf3sg] {
    flex: 1;
}

.no-results[b-93qmejf3sg] {
    text-align: center;
    padding: 3rem;
    color: var(--text-color);
}

.no-results p[b-93qmejf3sg] {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .page-content[b-93qmejf3sg] {
        flex-direction: column;
        gap: 1rem;
    }
    .filters-sidebar[b-93qmejf3sg] {
        width: 100%;
        position: static;
        max-height: none;
    }
}

@media (max-width: 600px) {
    .filters-sidebar[b-93qmejf3sg] {
        padding: 1rem;
    }
    .price-inputs[b-93qmejf3sg] {
        flex-direction: column;
        gap: 4px;
    }
    .price-inputs input[b-93qmejf3sg] {
        width: 100%;
    }
}
/* /Pages/ShoppingCart.razor.rz.scp.css */
.cart-container[b-slftbu244l] {
    background: var(--background-color);
    color: var(--text-color);
    padding: 2% 10%;
    min-height: 70vh;
}

.cart-header[b-slftbu244l] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cart-header h1[b-slftbu244l] {
    font-size: 2.5rem;
    margin: 0;
    color: var(--text-color);
}

.clear-cart-button[b-slftbu244l] {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.clear-cart-button:hover[b-slftbu244l] {
    background: var(--text-color);
    color: #111;
}

.loading[b-slftbu244l] {
    text-align: center;
    padding: 2rem;
    font-size: 1.2rem;
}

.empty-cart[b-slftbu244l] {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart h2[b-slftbu244l] {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.empty-cart p[b-slftbu244l] {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.cart-content[b-slftbu244l] {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.cart-items[b-slftbu244l] {
    flex: 1;
}

.cart-item[b-slftbu244l] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.item-image[b-slftbu244l] {
    flex: 0 0 100px;
}

.item-image img[b-slftbu244l] {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.item-details[b-slftbu244l] {
    flex: 1;
}

.item-title[b-slftbu244l] {
    font-size: 1.3rem;
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
}

.item-type[b-slftbu244l] {
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
    opacity: 0.7;
}

.item-price[b-slftbu244l] {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0;
    color: var(--text-color);
}

.item-quantity[b-slftbu244l] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.item-quantity label[b-slftbu244l] {
    font-size: 0.9rem;
    font-weight: bold;
}

.quantity-controls[b-slftbu244l] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn[b-slftbu244l] {
    background: var(--text-color);
    color: #111;
    border: none;
    border-radius: 4px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
}

.quantity-btn:hover:not(:disabled)[b-slftbu244l] {
    background: var(--hover-color);
}

.quantity-btn:disabled[b-slftbu244l] {
    opacity: 0.5;
    cursor: not-allowed;
}

.quantity-display[b-slftbu244l] {
    min-width: 30px;
    text-align: center;
    font-weight: bold;
}

.updating[b-slftbu244l] {
    font-size: 0.8rem;
    opacity: 0.7;
    font-style: italic;
}

.item-total[b-slftbu244l] {
    text-align: right;
}

.total-price[b-slftbu244l] {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
    color: var(--text-color);
}

.item-actions[b-slftbu244l] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.remove-button[b-slftbu244l] {
    background: transparent;
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
    border-radius: 6px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.remove-button:hover[b-slftbu244l] {
    background: #ff6b6b;
    color: white;
}

.cart-summary[b-slftbu244l] {
    flex: 0 0 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
}

.cart-summary h3[b-slftbu244l] {
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
    color: var(--text-color);
}

.summary-item[b-slftbu244l] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.summary-total[b-slftbu244l] {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
    font-weight: bold;
}

.checkout-button[b-slftbu244l] {
    background: var(--text-color);
    color: #111;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    margin-bottom: 1rem;
}

.checkout-button:hover[b-slftbu244l] {
    background: var(--hover-color);
}

.continue-shopping-button[b-slftbu244l] {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
    border-radius: 8px;
    padding: 1rem 2rem;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.continue-shopping-button:hover[b-slftbu244l] {
    background: var(--text-color);
    color: #111;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .cart-content[b-slftbu244l] {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cart-summary[b-slftbu244l] {
        flex: none;
        width: 100%;
    }
    
    .cart-item[b-slftbu244l] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .item-quantity[b-slftbu244l] {
        flex-direction: row;
        justify-content: center;
    }
    
    .item-total[b-slftbu244l] {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .cart-container[b-slftbu244l] {
        padding: 2% 5%;
    }
    
    .cart-header[b-slftbu244l] {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cart-header h1[b-slftbu244l] {
        font-size: 2rem;
    }
    
    .item-image[b-slftbu244l] {
        flex: 0 0 80px;
    }
    
    .item-image img[b-slftbu244l] {
        width: 80px;
        height: 80px;
    }
} 
/* /Pages/Terms.razor.rz.scp.css */
/* /Shared/CartIcon.razor.rz.scp.css */
.cart-icon[b-7s0yh95722] {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    margin-left: 1rem;
}

.cart-icon:hover[b-7s0yh95722] {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.cart-icon .oi[b-7s0yh95722] {
    color: var(--text-color);
    font-size: 1.2rem;
}

.cart-badge[b-7s0yh95722] {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--text-color);
    color: #111;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    min-width: 20px;
    min-height: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cart-icon[b-7s0yh95722] {
        width: 35px;
        height: 35px;
        margin-left: 0.5rem;
    }
    
    .cart-icon .oi[b-7s0yh95722] {
        font-size: 1rem;
    }
    
    .cart-badge[b-7s0yh95722] {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
        min-width: 18px;
        min-height: 18px;
    }
} 
/* /Shared/CookieConsent.razor.rz.scp.css */
@media (max-width: 600px) {
    .cookie-consent[b-c9ns5gc21e] {
        display: none !important;
    }
.cookie-consent[b-c9ns5gc21e] {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--background-color);
    color: var(--text-color);
    border-top: 2px solid var(--text-color);
    z-index: 9999;
    transition: bottom 0.3s ease-in-out;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-consent.visible[b-c9ns5gc21e] {
    bottom: 0;
}

/* Responsive width for cookie bar to match main body */
.cookie-consent-content[b-c9ns5gc21e] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    width: 90vw;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .cookie-consent-content[b-c9ns5gc21e] {
        width: 100vw;
        max-width: 100vw;
        padding: 1rem 0.5rem;
    }
}
}

.cookie-consent-header h3[b-c9ns5gc21e] {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    color: var(--text-color);
}

.cookie-consent-body[b-c9ns5gc21e] {
    margin-bottom: 1.5rem;
}

.cookie-consent-body p[b-c9ns5gc21e] {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cookie-options[b-c9ns5gc21e] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-option[b-c9ns5gc21e] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-option input[type="checkbox"][b-c9ns5gc21e] {
    margin-top: 0.25rem;
    accent-color: var(--text-color);
}

.cookie-option label[b-c9ns5gc21e] {
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.cookie-option small[b-c9ns5gc21e] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.4;
}

.cookie-consent-footer[b-c9ns5gc21e] {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cookie-consent-footer .btn[b-c9ns5gc21e] {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 0.9rem;
}

.cookie-consent-footer .btn-primary[b-c9ns5gc21e] {
    background: var(--text-color);
    color: #111;
}

.cookie-consent-footer .btn-primary:hover[b-c9ns5gc21e] {
    background: var(--hover-color);
}

.cookie-consent-footer .btn-secondary[b-c9ns5gc21e] {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-consent-footer .btn-secondary:hover[b-c9ns5gc21e] {
    background: rgba(255, 255, 255, 0.2);
}

.cookie-consent-footer .btn-outline[b-c9ns5gc21e] {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
}

.cookie-consent-footer .btn-outline:hover[b-c9ns5gc21e] {
    background: var(--text-color);
    color: #111;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-content[b-c9ns5gc21e] {
        padding: 1rem;
    }
    
    .cookie-consent-header h3[b-c9ns5gc21e] {
        font-size: 1.25rem;
    }
    
    .cookie-consent-footer[b-c9ns5gc21e] {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-consent-footer .btn[b-c9ns5gc21e] {
        width: 100%;
        text-align: center;
    }
} 
/* /Shared/Footer.razor.rz.scp.css */
/* Footer section isolated styles */
.footer-section[b-vyipmwd278] {
    background: var(--background-color, #fff);
    box-sizing: border-box;
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 32px 10% 32px 10%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    font-family: var(--font-family, 'Cinzel Decorative', serif);
}
.footer-content[b-vyipmwd278] {
    display: flex;
    align-items: center;
    flex-direction: column;
    align-items: center;
    padding: 32px 10% 32px 10%;
    position: relative;
    font-family: inherit;
}
.footer-three-columns[b-vyipmwd278] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding-left: 10%;
    padding-right: 10%;
}
.footer-email-contact[b-vyipmwd278], .footer-social-links[b-vyipmwd278], .footer-newsletter-section[b-vyipmwd278] {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    font-family: inherit;
}
.footer-email-contact[b-vyipmwd278] {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    font-family: inherit;
}
.footer-email-link[b-vyipmwd278] {
    color: var(--text-color, #222);
    text-decoration: none;
    margin-left: 0.5em;
    font-family: inherit;
}
.footer-social-links[b-vyipmwd278] {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}
.footer-instagram-link[b-vyipmwd278] {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}
.footer-instagram-icon[b-vyipmwd278] {
    width: 36px !important;
    height: 36px !important;
}
.footer-newsletter-section[b-vyipmwd278] {
    display: none !important;
}
.footer-newsletter-form[b-vyipmwd278] {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
}
.footer-newsletter-input[b-vyipmwd278] {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.9rem;
    width: 200px;
}
.footer-newsletter-submit[b-vyipmwd278] {
    padding: 0.3rem 1rem;
    font-size: 0.95rem;
    border-radius: 4px;
    border: none;
    background: var(--text-color, #e5c97b);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}
.footer-newsletter-submit.gold-btn[b-vyipmwd278] {
    background: var(--text-color, #e5c97b);
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    padding: 0.7rem 2rem;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: background 0.2s;
    cursor: pointer;
}
.footer-newsletter-submit.gold-btn:hover[b-vyipmwd278] {
    background: var(--hover-color, #cd7f32);
}
.footer-copyright-section[b-vyipmwd278] {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    font-family: inherit;
}


@media (max-width: 900px) {
    .footer-section[b-vyipmwd278], .footer-content[b-vyipmwd278] {
        margin-left: 0;
        margin-right: 0;
    }
    .footer-three-columns[b-vyipmwd278] {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
}
/* /Shared/Header.razor.rz.scp.css */
/* Header Content Styles */
.header-content[b-xvfra9x8s6] {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 15% 32px 15%;
    box-sizing: border-box;
}

.logo-image[b-xvfra9x8s6] {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
}

.menu-button[b-xvfra9x8s6] {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: none;
    border: none;
    position: relative;
}

.menu-icon[b-xvfra9x8s6] {
    font-size: 40px;
    line-height: 1;
    display: block;
}

.collapsible-menu[b-xvfra9x8s6] {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    min-width: 180px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    border-radius: 8px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
    /* Use CSS variable for site text color, fallback to #222 */
    color: var(--text-color, #222);
}

.menu-link[b-xvfra9x8s6] {
    padding: 10px 24px;
    width: 100%;
    color: inherit;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: inherit;
    transition: background 0.15s;
}
.menu-link:hover[b-xvfra9x8s6] {
    background: rgba(0,0,0,0.04);
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-g2gbpow6cn] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-g2gbpow6cn] {
    flex: 1;
}

.sidebar[b-g2gbpow6cn] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-g2gbpow6cn] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-g2gbpow6cn]  a, .top-row[b-g2gbpow6cn]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-g2gbpow6cn]  a:hover, .top-row[b-g2gbpow6cn]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-g2gbpow6cn]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-g2gbpow6cn] {
        display: none;
    }

    .top-row.auth[b-g2gbpow6cn] {
        justify-content: space-between;
    }

    .top-row[b-g2gbpow6cn]  a, .top-row[b-g2gbpow6cn]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-g2gbpow6cn] {
        flex-direction: row;
    }

    .sidebar[b-g2gbpow6cn] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-g2gbpow6cn] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-g2gbpow6cn]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-g2gbpow6cn], article[b-g2gbpow6cn] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-cfeljbuoko] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-cfeljbuoko] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-cfeljbuoko] {
    font-size: 1.1rem;
}

.oi[b-cfeljbuoko] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-cfeljbuoko] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-cfeljbuoko] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-cfeljbuoko] {
        padding-bottom: 1rem;
    }

    .nav-item[b-cfeljbuoko]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-cfeljbuoko]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-cfeljbuoko]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-cfeljbuoko] {
        display: none;
    }

    .collapse[b-cfeljbuoko] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
