/* /Components/AuthenticationErrorScreen.razor.rz.scp.css */
.auth-error-screen[b-6qqd6nfhd9] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: linear-gradient(135deg, var(--loading-gradient-start) 0%, var(--loading-gradient-end) 100%);
    transition: background 1.5s ease-in-out;
    z-index: 9999;
}

.error-container[b-6qqd6nfhd9] {
    text-align: center;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: var(--corner-radius, 8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.company-logo[b-6qqd6nfhd9] {
    margin-bottom: 2rem;
}

.company-logo .logo[b-6qqd6nfhd9] {
    max-width: 200px;
    max-height: 80px;
    object-fit: contain;
}

.error-container h1[b-6qqd6nfhd9] {
    color: var(--primary-color-interactive, #333);
    margin-bottom: 1rem;
    font-size: var(--font-size-large-header, 1.75rem);
    font-family: var(--font-family, inherit);
    font-weight: 600;
}

.error-container p[b-6qqd6nfhd9] {
    color: var(--primary-color-body-text, #555);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-family: var(--font-family, inherit);
    font-size: var(--font-size-base, 1rem);
}

.auth-actions[b-6qqd6nfhd9] {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.continue-button[b-6qqd6nfhd9] {
    padding: 1rem 3rem;
    border-radius: var(--corner-radius-small, 4px);
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family, inherit);
    font-size: var(--font-size-base, 1rem);
    background-color: var(--primary-color-interactive, #c62d34);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    min-width: 200px;
}

.continue-button:hover:not(:disabled)[b-6qqd6nfhd9] {
    background-color: var(--secondary-color-background-interactive, #a02329);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.continue-button:disabled[b-6qqd6nfhd9] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
/* /Components/BrandingErrorScreen.razor.rz.scp.css */
.branding-error-screen[b-zhlmf5uk09] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--loading-gradient-start) 0%, var(--loading-gradient-end) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: background 1.5s ease-in-out;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.error-container[b-zhlmf5uk09] {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #e1e5e9;
}

.error-icon[b-zhlmf5uk09] {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.error-title[b-zhlmf5uk09] {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.error-message[b-zhlmf5uk09] {
    margin-bottom: 1.5rem;
}

.error-message p[b-zhlmf5uk09] {
    color: #dc3545;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    padding: 1rem;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
}

.error-details[b-zhlmf5uk09] {
    text-align: left;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.error-details p[b-zhlmf5uk09] {
    color: #495057;
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
    font-weight: 500;
}

.error-details ul[b-zhlmf5uk09] {
    margin: 0.5rem 0 0 0;
    padding-left: 1.2rem;
    color: #6c757d;
    font-size: 0.85rem;
}

.error-details li[b-zhlmf5uk09] {
    margin-bottom: 0.25rem;
}

.error-actions[b-zhlmf5uk09] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.retry-button[b-zhlmf5uk09], .contact-button[b-zhlmf5uk09] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    min-width: 120px;
    justify-content: center;
}

.retry-button[b-zhlmf5uk09] {
    background: #007bff;
    color: white;
}

.retry-button:hover[b-zhlmf5uk09] {
    background: #0056b3;
    transform: translateY(-1px);
}

.contact-button[b-zhlmf5uk09] {
    background: #6c757d;
    color: white;
}

.contact-button:hover[b-zhlmf5uk09] {
    background: #545b62;
    transform: translateY(-1px);
    color: white;
    text-decoration: none;
}

.support-info[b-zhlmf5uk09] {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
}

.support-text[b-zhlmf5uk09] {
    color: #6c757d;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.support-text a[b-zhlmf5uk09] {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.support-text a:hover[b-zhlmf5uk09] {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .error-container[b-zhlmf5uk09] {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .error-title[b-zhlmf5uk09] {
        font-size: 1.3rem;
    }
    
    .error-actions[b-zhlmf5uk09] {
        flex-direction: column;
        align-items: center;
    }
    
    .retry-button[b-zhlmf5uk09], .contact-button[b-zhlmf5uk09] {
        width: 100%;
        max-width: 200px;
    }
}

/* Loading animation for retry button */
.retry-button:active[b-zhlmf5uk09] {
    transform: translateY(0);
}

.retry-button:disabled[b-zhlmf5uk09] {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.retry-button:disabled:hover[b-zhlmf5uk09] {
    background: #6c757d;
    transform: none;
}
/* /Components/BrandingLoadingScreen.razor.rz.scp.css */
.branding-loading-screen[b-hicgugy3o2] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--loading-gradient-start) 0%, var(--loading-gradient-end) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: background 1.5s ease-in-out;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.loading-container[b-hicgugy3o2] {
    text-align: center;
    color: white;
}

.loading-spinner[b-hicgugy3o2] {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.spinner[b-hicgugy3o2] {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin-b-hicgugy3o2 1s linear infinite;
}

@keyframes spin-b-hicgugy3o2 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-title[b-hicgugy3o2] {
    font-size: 2rem;
    font-weight: 300;
    margin: 0 0 1rem 0;
    letter-spacing: 0.5px;
}

.loading-message[b-hicgugy3o2] {
    font-size: 1.1rem;
    margin: 0 0 2rem 0;
    opacity: 0.9;
    font-weight: 300;
}

.loading-dots[b-hicgugy3o2] {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot[b-hicgugy3o2] {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse-b-hicgugy3o2 1.5s ease-in-out infinite;
}

.dot:nth-child(1)[b-hicgugy3o2] {
    animation-delay: 0s;
}

.dot:nth-child(2)[b-hicgugy3o2] {
    animation-delay: 0.3s;
}

.dot:nth-child(3)[b-hicgugy3o2] {
    animation-delay: 0.6s;
}

@keyframes pulse-b-hicgugy3o2 {
    0%, 80%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    40% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .loading-title[b-hicgugy3o2] {
        font-size: 1.5rem;
    }
    
    .loading-message[b-hicgugy3o2] {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .spinner[b-hicgugy3o2] {
        width: 50px;
        height: 50px;
    }
}
/* /Components/ContactInfoDialog.razor.rz.scp.css */
/* Contact Info Dialog Styles */
.contact-info-dialog[b-1zl3oe2dow] {
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.contact-form[b-1zl3oe2dow] {
    margin-bottom: 24px;
}

.form-group[b-1zl3oe2dow] {
    margin-bottom: 20px;
}

.form-group label[b-1zl3oe2dow] {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.form-group input[b-1zl3oe2dow] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.form-group input:focus[b-1zl3oe2dow] {
    outline: none;
    border-color: var(--primary-color-interactive);
    box-shadow: 0 0 0 3px rgba(var(--primary-color-interactive-rgb, 37, 140, 251), 0.1);
}

.form-group input:read-only[b-1zl3oe2dow] {
    background-color: #f5f5f5;
    color: #666;
    cursor: not-allowed;
}

.form-group input[b-1zl3oe2dow]::placeholder {
    color: #999;
}

.validation-error[b-1zl3oe2dow] {
    padding: 12px;
    background-color: #ffebee;
    border: 1px solid #ef5350;
    border-radius: 8px;
    color: #c62828;
    font-size: 14px;
    margin-top: 16px;
}

/* Dialog overlay and box (shared with HamburgerMenu) */
.dialog-overlay[b-1zl3oe2dow] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2500;
    animation: fadeIn-b-1zl3oe2dow 0.2s ease;
}

.dialog-box[b-1zl3oe2dow] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background-color: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 2501;
    animation: slideUp-b-1zl3oe2dow 0.3s ease;
}

@keyframes fadeIn-b-1zl3oe2dow {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-1zl3oe2dow {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.dialog-box h3[b-1zl3oe2dow] {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.dialog-box p[b-1zl3oe2dow] {
    margin: 0 0 24px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.dialog-actions[b-1zl3oe2dow] {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.dialog-button[b-1zl3oe2dow] {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dialog-button:disabled[b-1zl3oe2dow] {
    opacity: 0.6;
    cursor: not-allowed;
}

.dialog-button-secondary[b-1zl3oe2dow] {
    background-color: #f5f5f5;
    color: #333;
}

.dialog-button-secondary:hover:not(:disabled)[b-1zl3oe2dow] {
    background-color: #e0e0e0;
}

.dialog-button-primary[b-1zl3oe2dow] {
    background-color: var(--primary-color-interactive);
    color: white;
}

.dialog-button-primary:hover:not(:disabled)[b-1zl3oe2dow] {
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .contact-info-dialog[b-1zl3oe2dow] {
        width: 95%;
        max-width: none;
        padding: 20px;
    }

    .dialog-actions[b-1zl3oe2dow] {
        flex-direction: column;
    }

    .dialog-button[b-1zl3oe2dow] {
        width: 100%;
    }
}

/* /Components/Contact/TeamMemberList.razor.rz.scp.css */
.scroll[b-od6715nbbn] {
    overflow: auto;
}
/* /Components/Contact/TeamMemberRow.razor.rz.scp.css */


.contact-container[b-4h56hpoihd] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px 10px;
    border: 3px solid white;
    box-shadow: 0px 3px 3px 0 rgba(0,0,0,0.3);
    margin: 10px;
    border-radius: 8px;
}

.contact-info[b-4h56hpoihd] {
    display: flex;
    flex-direction: column;
}

.contact-image[b-4h56hpoihd] {
    width: 50px;
    height: 50px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
}

.contact-name[b-4h56hpoihd] {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.contact-email[b-4h56hpoihd] {
    font-size: 16px;
    color: #666;
}
/* /Components/Design/CoilDiagram.razor.rz.scp.css */
.coil-diagram-container[b-3jjo030c6i] {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.coil-svg[b-3jjo030c6i] {
    width: 100%;
    height: auto;
    max-height: 400px;
}

.diagram-title[b-3jjo030c6i] {
    font-size: 16px;
    font-weight: bold;
    fill: #333;
}

.fin-pack[b-3jjo030c6i] {
    opacity: 0.8;
}

.flange[b-3jjo030c6i] {
    opacity: 0.9;
}

.header[b-3jjo030c6i] {
    opacity: 0.8;
}

.return-bends[b-3jjo030c6i] {
    opacity: 0.7;
}

.feeder-tube[b-3jjo030c6i] {
    opacity: 0.6;
}

.connection[b-3jjo030c6i] {
    opacity: 0.9;
}

.connection.supply[b-3jjo030c6i] {
    filter: drop-shadow(2px 2px 4px rgba(231, 76, 60, 0.3));
}

.connection.return[b-3jjo030c6i] {
    filter: drop-shadow(2px 2px 4px rgba(52, 152, 219, 0.3));
}

.connection-label[b-3jjo030c6i] {
    font-size: 12px;
    font-weight: bold;
    fill: #333;
}

.vent-drain[b-3jjo030c6i] {
    opacity: 0.8;
}

.vent-label[b-3jjo030c6i] {
    font-size: 10px;
    fill: #333;
}

.dimensions line[b-3jjo030c6i] {
    stroke-dasharray: 2,2;
}

.dimension-label[b-3jjo030c6i] {
    font-size: 12px;
    font-weight: bold;
    fill: #007bff;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.specs-title[b-3jjo030c6i] {
    font-size: 13px;
    font-weight: bold;
    fill: #495057;
}

.specs-text[b-3jjo030c6i] {
    font-size: 11px;
    fill: #6c757d;
}

.hand-label[b-3jjo030c6i],
.arrangement-label[b-3jjo030c6i],
.coating-label[b-3jjo030c6i] {
    font-size: 11px;
    font-weight: bold;
    fill: #495057;
}

.comments-label[b-3jjo030c6i] {
    font-size: 10px;
    fill: #6c757d;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .coil-diagram-container[b-3jjo030c6i] {
        padding: 5px;
    }
    
    .diagram-title[b-3jjo030c6i] {
        font-size: 14px;
    }
    
    .dimension-label[b-3jjo030c6i] {
        font-size: 10px;
    }
    
    .connection-label[b-3jjo030c6i] {
        font-size: 10px;
    }
}
/* /Components/Design/DesignStep.razor.rz.scp.css */
.step-image[b-6rekrxhya3] {
    max-width: 100%;
    object-fit:contain;
    height:260px;
    border-radius:8px;
    margin-top:10px;
    text-align:center;
}

.step-fields[b-6rekrxhya3] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 20px 0;
}

/* /Components/Design/StepField.razor.rz.scp.css */
.field-description[b-7pw6lkebh4] {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.5rem;
    line-height: 1.4;
}

/* /Components/Design/Summary.razor.rz.scp.css */
.coil-diagram-section[b-wavty2kf55] {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.coil-diagram-section h6[b-wavty2kf55] {
    margin-bottom: 15px;
    color: #495057;
    font-weight: 600;
}

.specifications-section[b-wavty2kf55] {
    margin-top: 20px;
}

.specifications-section h6[b-wavty2kf55] {
    margin-bottom: 15px;
    color: #495057;
    font-weight: 600;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
}

.summary-row[b-wavty2kf55] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 10px 0;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-row:last-child[b-wavty2kf55] {
    border-bottom: none;
}

.step-name[b-wavty2kf55] {
    width: 60%;
    color: #6c757d;
}

.step-value[b-wavty2kf55] {
    width: 40%;
    font-weight: bold;
    color: #495057;
}
/* /Components/HamburgerMenu.razor.rz.scp.css */
/* Hamburger Menu Container */
.hamburger-menu-container[b-rekqwmjlhn] {
    position: relative;
    z-index: 2000;
}

/* Hamburger Button */
.hamburger-button[b-rekqwmjlhn] {
    position: fixed;
    top: 20px;
    left: 15px;
    width: 44px;
    height: 44px;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    z-index: 2001;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transition: opacity 0.3s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.hamburger-button.hidden[b-rekqwmjlhn] {
    opacity: 0;
    pointer-events: none;
}

.hamburger-button:hover[b-rekqwmjlhn] {
    background-color: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hamburger-button:active[b-rekqwmjlhn] {
    transform: scale(0.95);
}

.hamburger-line[b-rekqwmjlhn] {
    width: 24px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Menu Overlay */
.menu-overlay[b-rekqwmjlhn] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    animation: fadeIn-b-rekqwmjlhn 0.3s ease;
}

@keyframes fadeIn-b-rekqwmjlhn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Slide-out Menu Panel */
.menu-panel[b-rekqwmjlhn] {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background-color: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    
    /* Safe area support for iOS */
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
}

.menu-panel.open[b-rekqwmjlhn] {
    left: 0;
}

/* Menu Header */
.menu-header[b-rekqwmjlhn] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.menu-header-content[b-rekqwmjlhn] {
    flex: 1;
}

.menu-header h3[b-rekqwmjlhn] {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.menu-project-name[b-rekqwmjlhn] {
    margin: 4px 0 0 0;
    font-size: 13px;
    color: #666;
    font-weight: 400;
}

.menu-close[b-rekqwmjlhn] {
    background: none;
    border: none;
    font-size: 32px;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.menu-close:hover[b-rekqwmjlhn] {
    background-color: #f0f0f0;
}

/* Menu Items */
.menu-items[b-rekqwmjlhn] {
    flex: 1;
    padding: 10px 0;
    overflow-y: auto;
}

.menu-item[b-rekqwmjlhn] {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    width: 100%;
    border: none;
    background: none;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.menu-item:hover[b-rekqwmjlhn] {
    background-color: #f5f5f5;
}

.menu-item:active[b-rekqwmjlhn] {
    background-color: #e8e8e8;
}

.menu-icon[b-rekqwmjlhn] {
    font-size: 24px;
    width: 32px;
    text-align: center;
}

.menu-text[b-rekqwmjlhn] {
    flex: 1;
    text-align: left;
    font-weight: 500;
}

.menu-divider[b-rekqwmjlhn] {
    height: 1px;
    background-color: #e0e0e0;
    margin: 10px 20px;
}

.menu-item-danger[b-rekqwmjlhn] {
    color: #d32f2f;
}

.menu-item-danger:hover[b-rekqwmjlhn] {
    background-color: #ffebee;
}

/* Exit Confirmation Dialog */
.dialog-overlay[b-rekqwmjlhn] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2500;
    animation: fadeIn-b-rekqwmjlhn 0.2s ease;
}

.dialog-box[b-rekqwmjlhn] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background-color: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 2501;
    animation: slideUp-b-rekqwmjlhn 0.3s ease;
}

@keyframes slideUp-b-rekqwmjlhn {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.dialog-box h3[b-rekqwmjlhn] {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.dialog-box p[b-rekqwmjlhn] {
    margin: 0 0 24px 0;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.dialog-actions[b-rekqwmjlhn] {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.dialog-button[b-rekqwmjlhn] {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dialog-button-secondary[b-rekqwmjlhn] {
    background-color: #f5f5f5;
    color: #333;
}

.dialog-button-secondary:hover[b-rekqwmjlhn] {
    background-color: #e0e0e0;
}

.dialog-button-primary[b-rekqwmjlhn] {
    background-color: var(--primary-color-interactive);
    color: white;
}

.dialog-button-primary:hover[b-rekqwmjlhn] {
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .menu-panel[b-rekqwmjlhn] {
        width: 85%;
        max-width: 320px;
    }
    
    .hamburger-button[b-rekqwmjlhn] {
        top: 15px;
        left: 10px;
    }
}

/* /Components/LoadingScreen.razor.rz.scp.css */
.loading-screen[b-c2cb0ni3sm] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--loading-gradient-start) 0%, var(--loading-gradient-end) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, background 1.5s ease-in-out;
}

.loading-screen.visible[b-c2cb0ni3sm] {
    opacity: 1;
    visibility: visible;
}

.loading-screen.hidden[b-c2cb0ni3sm] {
    opacity: 0;
    visibility: hidden;
}

.loading-content[b-c2cb0ni3sm] {
    text-align: center;
    color: white;
    max-width: 400px;
    padding: 2rem;
}

.loading-logo[b-c2cb0ni3sm] {
    margin-bottom: 2rem;
}

.loading-logo img[b-c2cb0ni3sm] {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1); /* Make logo white */
}

.logo-placeholder[b-c2cb0ni3sm] {
    width: 200px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: bold;
    border-radius: 4px;
}

.loading-progress[b-c2cb0ni3sm] {
    margin-bottom: 2rem;
}

.progress-bar[b-c2cb0ni3sm] {
    width: 100%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill[b-c2cb0ni3sm] {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    border-radius: 4px;
    transition: width 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.progress-text[b-c2cb0ni3sm] {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 0.5rem;
    min-height: 1.5rem;
}

.loading-error[b-c2cb0ni3sm] {
    background-color: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.error-message[b-c2cb0ni3sm] {
    margin-bottom: 1rem;
}

.error-message strong[b-c2cb0ni3sm] {
    color: #ffcdd2;
}

.error-message p[b-c2cb0ni3sm] {
    margin: 0.5rem 0 0 0;
    color: #ffebee;
}

.retry-button[b-c2cb0ni3sm] {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.retry-button:hover[b-c2cb0ni3sm] {
    background-color: #d32f2f;
}

.authentication-prompt[b-c2cb0ni3sm] {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 1rem;
}

.authentication-prompt h3[b-c2cb0ni3sm] {
    margin: 0 0 1rem 0;
    color: #fff;
    font-size: 1.3rem;
}

.authentication-prompt p[b-c2cb0ni3sm] {
    margin: 0 0 1.5rem 0;
    color: #e3f2fd;
    line-height: 1.5;
}

.login-button[b-c2cb0ni3sm], .continue-button[b-c2cb0ni3sm] {
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    margin: 0.25rem;
    transition: all 0.3s ease;
    min-width: 120px;
}

.login-button[b-c2cb0ni3sm] {
    background-color: #4CAF50;
    color: white;
}

.login-button:hover[b-c2cb0ni3sm] {
    background-color: #45a049;
    transform: translateY(-1px);
}

.continue-button[b-c2cb0ni3sm] {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.continue-button:hover[b-c2cb0ni3sm] {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Responsive design */
@media (max-width: 768px) {
    .loading-content[b-c2cb0ni3sm] {
        padding: 1rem;
        max-width: 90%;
    }
    
    .loading-logo img[b-c2cb0ni3sm] {
        max-width: 150px;
    }
    
    .authentication-prompt[b-c2cb0ni3sm] {
        padding: 1.5rem;
    }
    
    .login-button[b-c2cb0ni3sm], .continue-button[b-c2cb0ni3sm] {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}
/* /Components/Projects/ProjectList.razor.rz.scp.css */
.projects .project-name[b-pamq49oo10] {
    align-self:center;
}

.project-actions .project-edit[b-pamq49oo10] {
    text-transform: capitalize !important;
    background-color: var(--primary-color-interactive);
    border:1px solid black;
}
.project-actions .project-send[b-pamq49oo10] {
    text-transform: capitalize;
    background-color: transparent !important;
    text-align:right;
    color: var(--primary-color-interactive);
}
.project-actions .project-copy[b-pamq49oo10] {
    text-transform: capitalize;
    background-color: transparent !important;
    text-align:right;
    color: var(--primary-color-interactive);
}
.project-actions button[b-pamq49oo10] {
    text-transform: capitalize;
    background-color: var(--secondary-color-background);
    text-align:right;
}
/* /Layout/Footer.razor.rz.scp.css */
.nav-container[b-0g95eyqzow] {
    position: relative;
    display: flex;
    flex-direction:row;
    justify-content: space-between;
    height:180px;
    margin: 0 20px;
}
.nav-container a span[b-0g95eyqzow], .nav-container .btn-link span[b-0g95eyqzow]{
    color:grey;
}

footer[b-0g95eyqzow] {
    position: relative;
    height: 200px;
    flex-shrink: 0; /* Prevent the footer from shrinking */
}

.nav-button-container[b-0g95eyqzow] {
    text-decoration: none !important;
    color:grey;
}

.nav-button-content[b-0g95eyqzow] {
    height: 80px;
    width: 80px;
    position:relative;
    border-width: 1px;
    border-color: var(--secondary-color-background);
    border-style: solid;
    border-radius: 10px;
    box-shadow: rgba(0,0,0,0.25) 0px 4px 4px;
    margin-bottom: 10px;
    will-change:width, height, border-color;
    transition: all ease-out .3s;
}

.nav-button-image[b-0g95eyqzow] {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    border-radius: 10px;
}

    .nav-button-image img[b-0g95eyqzow] {
        object-fit: cover;
        width: 100%;
        height: 100%;
        display: block;
        border-radius: 10px;
    }

.nav-container a.active .nav-button-content[b-0g95eyqzow] {
    width:110px;
    height:110px;
    border-color: var(--primary-color-interactive);
    box-shadow:rgba(0,0,0,0) 0 0 0;
}

.powered-by-nortek[b-0g95eyqzow] {
    text-align: center;
    padding: 10px 0 20px 0;
    font-size: 12px;
    color: #999;
    opacity: 0.7;
}

.powered-by-nortek span[b-0g95eyqzow] {
    font-weight: 300;
    letter-spacing: 0.5px;
}
/* /Layout/Header.razor.rz.scp.css */


header[b-zpafazvq11] {
    position: relative;
    height: 100px;
    flex-shrink: 0; /* Prevent the header from shrinking */
}
.header-logo[b-zpafazvq11] {
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10%;
}

.header-logo-img[b-zpafazvq11] {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.header-logo-placeholder[b-zpafazvq11] {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    color: #666;
    font-weight: bold;
    border-radius: 4px;
}


.header-auth[b-zpafazvq11] {
    margin-top:10px;
    text-align:center;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.main-container[b-3sqzr03dlu] {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100vh; /* Ensure the container takes up the full viewport height */
    overflow-x: hidden;
    max-width: 100vw;

    /* Safe area adjustments for mobile devices */
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

/* When on design page, remove bottom padding since fixed buttons handle safe area */
.main-container.design-page-layout[b-3sqzr03dlu] {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}



main[b-3sqzr03dlu] {
    position:relative;
    flex: 1; /* Allow the main content to take up the remaining space */
    display:flex;
    flex-direction:column;
    overflow:hidden;
}



.sidebar[b-3sqzr03dlu] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-3sqzr03dlu] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-3sqzr03dlu]  a, .top-row[b-3sqzr03dlu]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-3sqzr03dlu]  a:hover, .top-row[b-3sqzr03dlu]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-3sqzr03dlu]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-3sqzr03dlu] {
        justify-content: space-between;
    }

    .top-row[b-3sqzr03dlu]  a, .top-row[b-3sqzr03dlu]  .btn-link {
        margin-left: 0;
    }

    .mainContainer[b-3sqzr03dlu] {
        /* Additional mobile-specific adjustments if needed */
    }
}

@media (min-width: 641px) {
    .page[b-3sqzr03dlu] {
        flex-direction: row;
    }

    .sidebar[b-3sqzr03dlu] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-3sqzr03dlu] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-3sqzr03dlu]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-3sqzr03dlu], article[b-3sqzr03dlu] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Pages/CompanyInfo.razor.rz.scp.css */
.company-info-container[b-khbzkedzem] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.company-info-container h1[b-khbzkedzem] {
    color: var(--primary-color, #2c3e50);
    margin-bottom: 2rem;
    text-align: center;
}

.loading-message[b-khbzkedzem] {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted, #666);
}

.company-details[b-khbzkedzem] {
    display: grid;
    gap: 2rem;
}

.info-section[b-khbzkedzem] {
    background: var(--card-background, #fff);
    border: 1px solid var(--border-color, #e1e5e9);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-section h2[b-khbzkedzem] {
    color: var(--primary-color, #2c3e50);
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--accent-color, #3498db);
    padding-bottom: 0.5rem;
}

.info-section p[b-khbzkedzem] {
    margin: 0.5rem 0;
    line-height: 1.5;
}

.product-list[b-khbzkedzem], .team-list[b-khbzkedzem], .project-list[b-khbzkedzem] {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.product-list li[b-khbzkedzem], .team-list li[b-khbzkedzem], .project-list li[b-khbzkedzem] {
    background: var(--item-background, #f8f9fa);
    border: 1px solid var(--border-light, #e9ecef);
    border-radius: 4px;
    padding: 0.75rem;
    margin: 0.5rem 0;
    transition: background-color 0.2s ease;
}

.product-list li:hover[b-khbzkedzem], .team-list li:hover[b-khbzkedzem], .project-list li:hover[b-khbzkedzem] {
    background: var(--item-hover, #e9ecef);
}

.product-list li strong[b-khbzkedzem], .team-list li strong[b-khbzkedzem], .project-list li strong[b-khbzkedzem] {
    color: var(--primary-color, #2c3e50);
}

.product-list li span[b-khbzkedzem], .team-list li span[b-khbzkedzem], .project-list li span[b-khbzkedzem] {
    color: var(--text-secondary, #6c757d);
}

.project-list li small[b-khbzkedzem] {
    color: var(--text-muted, #868e96);
    font-size: 0.85rem;
}

.no-data[b-khbzkedzem] {
    color: var(--text-muted, #6c757d);
    font-style: italic;
    text-align: center;
    padding: 1rem;
    background: var(--background-light, #f8f9fa);
    border-radius: 4px;
}

.auth-message[b-khbzkedzem] {
    color: var(--warning-color, #f39c12);
    font-weight: 500;
    text-align: center;
    padding: 1rem;
    background: var(--warning-background, #fef9e7);
    border: 1px solid var(--warning-border, #f1c40f);
    border-radius: 4px;
}

.actions[b-khbzkedzem] {
    text-align: center;
    margin-top: 2rem;
}

.refresh-button[b-khbzkedzem] {
    background: var(--primary-color, #3498db);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.refresh-button:hover[b-khbzkedzem] {
    background: var(--primary-hover, #2980b9);
}

.refresh-button:active[b-khbzkedzem] {
    transform: translateY(1px);
}

/* Responsive design */
@media (max-width: 768px) {
    .company-info-container[b-khbzkedzem] {
        padding: 1rem;
    }
    
    .info-section[b-khbzkedzem] {
        padding: 1rem;
    }
    
    .info-section h2[b-khbzkedzem] {
        font-size: 1.1rem;
    }
}
/* /Pages/Contact.razor.rz.scp.css */
/* /Pages/Design.razor.rz.scp.css */
.step-header[b-zsa5s1s9bn] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items:center;
    padding: 10px;
    height: 80px;
    overflow-x: hidden;
    max-width: 100vw;
}

.step-header-display-container[b-zsa5s1s9bn] {
    color:var(--primary-color-interactive)
}

.step-header-project-title[b-zsa5s1s9bn] {
    font-size:1rem;
}

.step-header-display-container[b-zsa5s1s9bn] {
    display:flex;
    flex-direction:row;
}

.step-progress-wrapper[b-zsa5s1s9bn] {
    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position:relative;
    width:80px;
    margin-top:-5px;
}


.step-progress-circular-bar[b-zsa5s1s9bn] {
    width: 60px;
    height: 60px;
    /* background is now set dynamically via style attribute */
    border-radius: 50%;
    display: flex;
    align-items: center;
    -webkit-justify-content: inherit;
    justify-content: inherit;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
    position:relative;
}

.step-project-type-image[b-zsa5s1s9bn] {
    position: absolute;

    width: 50px;
    height: 50px;
    box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.15);
    background-color: white;
    border-radius: 50%;
}

.step-container[b-zsa5s1s9bn] {
    padding: 10px;
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    max-width: 100vw;
    /* Add padding at bottom to prevent content from being hidden behind fixed buttons */
    padding-bottom: 100px;
}

.step-pagination-fixed[b-zsa5s1s9bn] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: white;
    border-top: 1px solid #e0e0e0;
    overflow-x: hidden;
    max-width: 100vw;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;

    /* Safe area support for iOS devices */
    padding-bottom: calc(15px + env(safe-area-inset-bottom));
    padding-left: calc(20px + env(safe-area-inset-left));
    padding-right: calc(20px + env(safe-area-inset-right));
}

.step-button-secondary[b-zsa5s1s9bn] {
    background-color: #626262;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    min-width: 120px;
    height: 55px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.step-button-secondary:hover:not(:disabled)[b-zsa5s1s9bn] {
    background-color: #4a4a4a;
}

.step-button-secondary:disabled[b-zsa5s1s9bn] {
    opacity: 0.5;
    cursor: not-allowed;
}

.step-button-primary[b-zsa5s1s9bn] {
    background-color: var(--primary-color-interactive);
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    min-width: 120px;
    height: 55px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.step-button-primary:hover[b-zsa5s1s9bn] {
    opacity: 0.9;
}

.hidden[b-zsa5s1s9bn] {
    visibility: hidden;
}
/* /Pages/Home.razor.rz.scp.css */
.landing-container[b-5k8v76x7rv] {
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.introduction-text[b-5k8v76x7rv] {
    padding: 0 30px;
    margin-top: 40px;
}

.introduction-text h2[b-5k8v76x7rv] {
    color: var(--text-color);
    margin-bottom: 12px;
}

.introduction-text p[b-5k8v76x7rv] {
    color: var(--text-color);
    line-height: 1.5;
}

.loading-container[b-5k8v76x7rv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.loading-spinner[b-5k8v76x7rv] {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color-interactive);
    border-radius: 50%;
    animation: spin-b-5k8v76x7rv 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin-b-5k8v76x7rv {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-container[b-5k8v76x7rv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.error-message[b-5k8v76x7rv] {
    color: #dc3545;
    margin-bottom: 16px;
    text-align: center;
}

.retry-button[b-5k8v76x7rv] {
    background-color: var(--primary-color-interactive);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.retry-button:hover[b-5k8v76x7rv] {
    background-color: var(--secondary-color-background-interactive);
}

.no-products-container[b-5k8v76x7rv] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    color: var(--primary-color-body-text);
}

.products-container[b-5k8v76x7rv] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    flex: 1;
}

.floating-button[b-5k8v76x7rv]{
    position:relative;
    background:transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
    margin-bottom: 20px;
}

.floating-button:hover[b-5k8v76x7rv] {
    transform: scale(1.05);
}

.login-required-container[b-5k8v76x7rv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.login-message h3[b-5k8v76x7rv] {
    color: var(--primary-color-interactive);
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.login-message p[b-5k8v76x7rv] {
    color: var(--primary-color-body-text);
    margin-bottom: 24px;
    font-size: 1rem;
}

.login-actions[b-5k8v76x7rv] {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.login-button[b-5k8v76x7rv] {
    background-color: var(--primary-color-interactive);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.login-button:hover[b-5k8v76x7rv] {
    background-color: var(--secondary-color-background-interactive);
}

.cancel-button[b-5k8v76x7rv] {
    background-color: transparent;
    color: var(--primary-color-body-text);
    border: 1px solid var(--primary-color-body-text);
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.cancel-button:hover[b-5k8v76x7rv] {
    background-color: var(--secondary-color-background);
}

.floating-button-display[b-5k8v76x7rv] {
    position:relative;
    left:auto;
    width:100%;
    height:100px;
    border-radius:6px;
    border-color:gray;
    border-width:2px;
    border-style:solid;
    background-color:white;
    z-index:5;
    box-shadow: 1px 4px 5px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.floating-button-display img[b-5k8v76x7rv] {
    object-fit:cover;
    width:80px;
    height:80px;
    box-sizing:border-box;
    border-radius:6px;
}

.product-image-placeholder[b-5k8v76x7rv] {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color-background);
    color: var(--primary-color-body-text);
    border-radius: 6px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    font-size: 0.9rem;
}

.floating-button-exterior-display[b-5k8v76x7rv] {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.content-text[b-5k8v76x7rv] {
    color: var(--primary-color-interactive);
    text-align: right;
    font-size: 20px;
    font-weight: 500;
}

.content-adorner[b-5k8v76x7rv] {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-adorner[b-5k8v76x7rv]::after {
    content: '›';
    font-size: 54px;
    color: var(--primary-color-interactive);
    font-weight: normal;
    margin-top: -10px;
}
