/* /Components/ContactDetails.razor.rz.scp.css */
.centered-dialog[b-587hlt62ie] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1300; /* Make sure it’s above your content */
}
/* /Components/DownloadButton.razor.rz.scp.css */
.download-button[b-bm3qq19lp5] {
    transition: all 0.3s ease;
    text-transform: none;
    font-weight: 600;
    border-radius: 8px;
    min-width: auto;
}

.download-button:hover:not(:disabled)[b-bm3qq19lp5] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.download-button:active:not(:disabled)[b-bm3qq19lp5] {
    transform: translateY(0);
}

.download-button.success-state[b-bm3qq19lp5] {
    animation: success-pulse-b-bm3qq19lp5 0.6s ease-out;
}

.download-button.error-state[b-bm3qq19lp5] {
    animation: error-shake-b-bm3qq19lp5 0.5s ease-out;
}

@keyframes success-pulse-b-bm3qq19lp5 {
     0% { transform: scale(1); }
     50% { transform: scale(1.05); }
     100% { transform: scale(1); }
 }

@keyframes error-shake-b-bm3qq19lp5 {
     0%, 100% { transform: translateX(0); }
     25% { transform: translateX(-4px); }
     75% { transform: translateX(4px); }
 }

.download-button .mud-progress-circular[b-bm3qq19lp5] {
    animation: spin-b-bm3qq19lp5 1s linear infinite;
}

@keyframes spin-b-bm3qq19lp5 {
     from { transform: rotate(0deg); }
     to { transform: rotate(360deg); }
 }
/* /Components/Policy/MemberPolicy.razor.rz.scp.css */
.policy-card:hover[b-nh4tqn12vc] {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.policy-detail-item[b-nh4tqn12vc] {
    margin-bottom: 12px;
}

.detail-label[b-nh4tqn12vc] {
    font-weight: 500;
    color: var(--mud-palette-text-secondary);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.detail-value[b-nh4tqn12vc] {
    font-weight: 600;
    color: var(--mud-palette-text-primary);
}

.conditions-button[b-nh4tqn12vc] {
    border-radius: 20px;
}

.expand-button .mud-icon[b-nh4tqn12vc] {
    transition: transform 0.3s ease;
}

.expand-button.expanded .mud-icon[b-nh4tqn12vc] {
    transform: rotate(180deg);
}
/* /Layout/MainLayout.razor.rz.scp.css */

.drawer-footer[b-76npjwqg7z] {
    border-top: 1px solid #e0e0e0;
    padding: 0.5rem;
}
/* /Pages/Policies.razor.rz.scp.css */
.loading-container[b-o3jahygi1s] {
    animation: pulse-b-o3jahygi1s 1.5s ease-in-out infinite;
}

.policies-section[b-o3jahygi1s] {
    position: relative;
}

.section-header[b-o3jahygi1s] {
    position: relative;
    padding-left: 16px;
}

.section-header[b-o3jahygi1s]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--mud-palette-primary), var(--mud-palette-primary-darken));
    border-radius: 2px;
}

.other-policies-grid .section-header[b-o3jahygi1s]::before {
    background: linear-gradient(to bottom, var(--mud-palette-secondary), var(--mud-palette-secondary-darken));
}

.polisblad-download-btn[b-o3jahygi1s] {
    border-radius: 8px;
    text-transform: none;
    font-weight: 600;
    min-width: 180px;
}

@keyframes pulse-b-o3jahygi1s {
     0%, 100% { opacity: 1; }
     50% { opacity: 0.7; }
 }
