
/* ===== WASM-SPECIFIC STYLES ===== */

/* Profile Page Styles (Web only) */
.profile-page {
    min-height: 100vh;
    background-color: #f8f9fa;
}

.profile-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
}

.avatar-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.avatar-initials {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
}

.card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card-header {
    background-color: white;
    border-bottom: 2px solid #f8f9fa;
    padding: 1.25rem;
}

/* Change Password Page */
.change-password-page {
    min-height: 100vh;
    background-color: #f8f9fa;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
}

.input-group button {
    border-left: none;
}

.input-group input:focus + button {
    border-color: #86b7fe;
}

/* Session Expired Overlay (Web only) */
.session-expired-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.session-expired-dialog {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
}

/* Print Styles (Invoice printing - Web only) */
@media print {
    body * {
        visibility: hidden;
    }

    #invoice-container,
    #invoice-container * {
        visibility: visible;
    }

    #invoice-container {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }

    .btn,
    button,
    .no-print {
        display: none !important;
    }
}
