/* Shown on "My Appointments" when the user is not logged in */
.login-required-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 480px;
    margin: 40px auto;
    padding: 40px 30px;
    background-color: #fff;
    border: 1px solid rgba(142, 125, 115, 0.25);
    border-radius: 24px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.login-required-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: var(--rz-primary);
    color: #fff;
}

.login-required-title {
    margin-bottom: 10px;
    color: var(--rz-primary);
    font-weight: 600;
}

.login-required-subtext {
    margin-bottom: 24px;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.5;
}

.login-required-buttons {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.login-required-alert {
    margin-top: 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .login-required-state {
        margin: 24px 16px;
        padding: 30px 20px;
    }
}
