/* LineDrive Social - Shared Theme Controls CSS */
/* Identical theme controls used across all pages */

.theme-selector {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.theme-btn {
    width: 45px;
    height: 45px;
    background: var(--accent-color, var(--accent-color));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-btn:hover {
    transform: scale(1.1);
}

.theme-menu {
    position: absolute;
    bottom: 55px;
    right: 0;
    background: var(--bg-primary);
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    gap: 8px;
}

.theme-menu.active {
    display: flex;
}

.theme-option {
    width: 32px;
    height: 32px;
    border: 2px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.theme-option:hover {
    transform: scale(1.1);
}

.theme-option.selected {
    border-color: white;
    box-shadow: 0 0 0 2px var(--text-primary);
}

.dark-mode-btn {
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 20px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px var(--shadow-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark-mode-btn:hover {
    transform: scale(1.1);
}

body.dark-mode .theme-btn i {
    color: #000000;
}
