/* ===================================
   MODE TOGGLE STYLES
   =================================== */

.mode-toggle {
    display: flex;
    gap: 0.75rem;
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.mode-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    background-color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
}

.mode-btn .material-symbols-outlined {
    font-size: 1.5rem;
}

.mode-btn:hover {
    border-color: #4c99e6;
    transform: translateY(-2px);
}

.mode-btn.active {
    background-color: #4c99e6;
    border-color: #4c99e6;
    color: white;
    box-shadow: 0 4px 12px rgba(76, 153, 230, 0.3);
}

.mode-btn.active .material-symbols-outlined {
    font-variation-settings: 'FILL' 1;
}

.mode-btn:active {
    transform: translateY(0);
}