/* Theme Switcher Styles */
.theme-switcher-container {
    /* Position the container at the top of the left panel */
    position: relative;
    display: flex;
    flex-direction: row; /* Change to row for horizontal layout */
    justify-content: center; /* Center the theme switchers */
    gap: 10px;
    margin-bottom: 15px; /* Add margin to separate from player card */
    padding: 10px;
    z-index: 100;
}

.theme-switcher {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.theme-switcher:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.theme-switcher.active {
    border: 2px solid white;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

/* Theme colors */
.theme-color.purple {
    background: linear-gradient(135deg, #9c27b0, #673ab7);
}

.theme-color.gold {
    background: linear-gradient(135deg, #b8860b, #8b6914);
}

/* Default purple theme (original) */
.theme-switcher.purple-theme {
    background-color: #6b46c1; /* Purple */
    border: 2px solid #9f7aea; /* Lighter purple border */
}

/* Gold theme */
.theme-switcher.gold-theme {
    background-color: #b8860b; /* Gold */
    border: 2px solid #8b6914; /* Bright gold border */
}

.theme-switcher.brown-theme {
    background: linear-gradient(135deg, #ab9b87 0%, #71645a 100%);
    border: 2px solid #ab9b87;
}

/* Theme switcher animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.theme-options.show {
    animation: slideIn 0.3s ease forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .theme-switcher {
        bottom: 10px;
        right: 10px;
    }
    
    .theme-switcher-button {
        width: 36px;
        height: 36px;
    }
    
    .theme-options {
        padding: 8px;
    }
    
    .theme-option {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .theme-color {
        width: 18px;
        height: 18px;
    }
} 