/* Game Data Tab Styles */

/* Favorite Section */
.favorite-section:hover {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 193, 7, 0.15)) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

/* Situation Radio Cards */
.situation-radio-option .situation-card {
    transition: all 0.3s ease;
}

.situation-radio-option:hover .situation-card {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.situation-radio-option input[type="radio"]:checked + .situation-card {
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Platform Tracking Section */
#platformTrackingSection .platform-row {
    transition: all 0.3s ease;
}

#platformTrackingSection .platform-row:hover {
    background: #f0f0f0 !important;
    transform: translateX(5px);
}

/* Form Sections */
.form-section {
    animation: fadeIn 0.4s ease;
}

/* @keyframes - Moved to theme files */
}

/* Rating Options */
.rating-option .btn {
    transition: all 0.3s ease;
}

.rating-option .btn:hover {
    transform: scale(1.05);
}

.rating-option input[type="radio"]:checked + label {
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Score Select Styling */
#score {
    background-image: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
}

#score:focus {
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
    border-color: #667eea;
}

/* Achievement Percentage Display */
.achievement-percentage {
    transition: color 0.3s ease;
}

/* Section Titles */
.section-title {
    font-weight: 700;
    font-size: 1.3rem;
}

/* Theme-Specific Styles */

/* Light Theme */
.theme-indigo-light .situation-card {
    background: white !important;
}

.theme-indigo-light .form-label,
.theme-indigo-light .section-title {
    color: #212529 !important;
}

.theme-indigo-light .form-select,
.theme-indigo-light .form-control {
    background-color: white;
    color: #212529;
    border-color: #dee2e6;
}

.theme-indigo-light .text-dark {
    color: #212529 !important;
}

/* Dark Theme */
.theme-indigo-dark .situation-card {
    background: rgba(30, 41, 59, 0.6) !important;
    border: 2px solid rgba(139, 92, 246, 0.4) !important;
}

.theme-indigo-dark .situation-radio-option input[type="radio"]:checked + .situation-card {
    background: rgba(139, 92, 246, 0.2) !important;
    box-shadow: 0 6px 18px rgba(139, 92, 246, 0.3);
}

.theme-indigo-dark .form-label,
.theme-indigo-dark .section-title {
    color: #e2e8f0 !important;
}

.theme-indigo-dark .text-dark {
    color: #e2e8f0 !important;
}

.theme-indigo-dark .form-select,
.theme-indigo-dark .form-control {
    background-color: rgba(30, 41, 59, 0.8) !important;
    color: #e2e8f0 !important;
    border-color: rgba(139, 92, 246, 0.3);
}

.theme-indigo-dark .form-select:focus,
.theme-indigo-dark .form-control:focus {
    background-color: rgba(30, 41, 59, 0.9) !important;
    border-color: rgba(139, 92, 246, 0.6);
    color: #e2e8f0 !important;
}

.theme-indigo-dark .form-control:disabled,
.theme-indigo-dark .form-control[readonly] {
    background-color: rgba(30, 41, 59, 0.6) !important;
    color: #94a3b8 !important;
}

.theme-indigo-dark .form-select option {
    background-color: #1e293b;
    color: #e2e8f0;
}

.theme-indigo-dark #score {
    color: #e2e8f0 !important;
}

.theme-indigo-dark .text-muted {
    color: #94a3b8 !important;
}

.theme-indigo-dark .favorite-section {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 193, 7, 0.15)) !important;
}

.theme-indigo-dark .favorite-section:hover {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.25), rgba(255, 193, 7, 0.25)) !important;
}

/* Select2 Dark Theme Styles */
.theme-indigo-dark .select2-container--default .select2-selection--multiple {
    background-color: rgba(30, 41, 59, 0.8) !important;
    border-color: rgba(139, 92, 246, 0.3) !important;
}

.theme-indigo-dark .select2-container--default .select2-selection--multiple .select2-search__field {
    color: #e2e8f0 !important;
}

.theme-indigo-dark .select2-container--default .select2-selection--multiple .select2-search__field::placeholder {
    color: #94a3b8 !important;
}

.theme-indigo-dark .select2-dropdown {
    background-color: #1e293b !important;
    border-color: rgba(139, 92, 246, 0.3) !important;
}

.theme-indigo-dark .select2-results__option {
    background-color: #1e293b !important;
    color: #e2e8f0 !important;
}

.theme-indigo-dark .select2-results__option--highlighted {
    background-color: rgba(139, 92, 246, 0.3) !important;
}

.theme-indigo-dark .select2-results__option--selected {
    background-color: rgba(139, 92, 246, 0.2) !important;
}

.theme-indigo-dark .select2-search--dropdown .select2-search__field {
    background-color: rgba(30, 41, 59, 0.9) !important;
    border-color: rgba(139, 92, 246, 0.3) !important;
    color: #e2e8f0 !important;
}
