/* Settings Page Styles */
.btn-primary-full {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 45, 98, 0.2);
}

.btn-primary-full:hover {
    background: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0, 45, 98, 0.3);
    transform: translateY(-1px);
}

.settings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
}

.settings-row:last-child {
    border-bottom: none;
}

.settings-label {
    font-weight: 600;
    color: #222;
    font-size: 1rem;
}

.settings-options {
    display: flex;
    gap: 12px;
}

.settings-btn {
    padding: 10px 24px;
    border: 2px solid #ccc;
    border-radius: 10px;
    text-decoration: none;
    color: #555;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: white;
}

.settings-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #f0f7ff;
}

.settings-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 45, 98, 0.2);
}

.logout-btn {
    display: inline-block;
    color: white;
    background: #e63946;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 10px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
}

.logout-btn:hover {
    background: #d62828;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
    transform: translateY(-1px);
}

.logout-btn i {
    margin-right: 8px;
}