/* Disabled Account Styles */

.disabled-account-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #fecaca;
    margin: 2rem 0;
}

.disabled-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 50%;
    border: 2px solid #fecaca;
}

.disabled-account-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
    margin: 0 0 1rem 0;
}

.disabled-account-message p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0 0 0.5rem 0;
    max-width: 500px;
    line-height: 1.6;
}

.disabled-account-message p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: #374151;
}

/* Responsive Design */
@media (max-width: 768px) {
    .disabled-account-message {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }
    
    .disabled-icon {
        width: 60px;
        height: 60px;
    }
    
    .disabled-account-message h3 {
        font-size: 1.25rem;
    }
    
    .disabled-account-message p {
        font-size: 0.875rem;
    }
}
