 .select2-container .select2-selection--single {
            height: 40px !important;
            border: none !important;
            background-color: var(--input-dark) !important;
            color: white !important;
            border-radius: 6px !important;
        }
        .select2-container--default .select2-selection--single .select2-selection__rendered {
            line-height: 40px !important;
            color: white !important;
            padding-left: 0.75rem !important;
        }
        .select2-container--default .select2-selection--single .select2-selection__arrow {
            height: 40px !important;
        }
        .select2-dropdown {
            background-color: var(--card-dark) !important;
            border: 1px solid var(--input-dark) !important;
            border-radius: 6px;
        }
        .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
            background-color: var(--spotify-green) !important;
            color: white !important;
        }
        .select2-search--dropdown .select2-search__field {
            background-color: var(--input-dark) !important;
            border: 1px solid var(--spotify-green) !important;
            color: white !important;
        }
        .select2-container--default .select2-results__option--selected {
            background-color: #383838 !important;
            color: #ccc !important;
        }

        :root {
            --spotify-green: #1DB954;
            --main-dark: #121212;
            --card-dark: #181818;
            --input-dark: #3e3e3e;
            --accent-purple: #6c1bcf;
            --text-light: #b3b3b3;
        }
        
        /* NEW: Custom Scrollbar Styles (WebKit - Chrome, Safari) */
        ::-webkit-scrollbar {
            width: 12px; /* Thicker scrollbar */
            height: 12px;
        }
        ::-webkit-scrollbar-track {
            background: var(--card-dark);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--spotify-green);
            border-radius: 10px;
            border: 3px solid var(--card-dark); /* Padding inside the thumb */
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #1aa34a; /* Slightly darker green on hover */
        }
        
        /* NEW: Custom Scrollbar Styles (Firefox) */
        * {
            scrollbar-width: thin; /* Firefox scrollbar width */
            scrollbar-color: var(--spotify-green) var(--card-dark); /* thumb color track color */
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'Montserrat', sans-serif;
            color: white;
            min-height: 100vh;
            background: linear-gradient(to bottom, var(--accent-purple), var(--main-dark) 400px);
            background-attachment: fixed;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-size: 15px;
        }

        /* Subtle blurred background pseudo-element */
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('img/now_play.png') no-repeat top left;
            background-size: cover;
            filter: blur(8px);
            opacity: 0.15;
            z-index: -1;
        }

        .login-container {
            /* Glassmorphism effect */
            background-color: rgba(24, 24, 24, 0.85);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);

            /* Padding reduced for smaller container */
            padding: 2rem;
            border-radius: 12px;
            width: 90%;
            max-width: 380px;
            text-align: center;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
            transition: all 0.3s ease;
        }

        .login-container:hover {
            box-shadow: 0 0 10px var(--spotify-green), 0 0 20px var(--accent-purple);
        }

        .login-container h2 {
            font-size: 1.75rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .logo-img {
            width: 90px;
        }

        /* IMPORTANT FIX: The form-control-group class must be used for icon positioning */
        .form-control-group {
            position: relative;
            margin-bottom: 1rem;
        }

        .form-control {
            background-color: var(--input-dark);
            border: none;
            color: white;
            padding-left: 3rem; /* Space for the icon */
            border-radius: 6px;
            height: 40px;
            transition: all 0.3s ease;
        }
        
        /* Custom style for the select box (Market Select field in the modal) */
        .form-control.form-select-custom {
            padding-right: 0.75rem; 
            padding-left: 0.75rem; /* The Select2 script handles its own padding, so we reset this */
        }

        /* Placeholder Styling: Set color to white */
        .form-control::placeholder {
            color: white;
            opacity: 0.7;
        }
        .form-control:-ms-input-placeholder {
            color: white;
            opacity: 0.7;
        }
        .form-control::-ms-input-placeholder {
            color: white;
            opacity: 0.7;
        }

        .form-control:focus {
            background-color: #4a4a4a;
            color: white;
            box-shadow: 0 0 0 0.25rem rgba(29, 185, 84, 0.5);
            border-color: var(--spotify-green);
        }

        .input-icon {
            position: absolute;
            top: 50%;
            left: 1rem;
            transform: translateY(-50%);
            color: #b3b3b3;
            font-size: 1rem;
            pointer-events: none;
        }

        .btn-primary {
            background: linear-gradient(45deg, #1DB954, #1aa34a);
            border: none;
            font-weight: bold;
            letter-spacing: 0.5px;
            padding: 0.5rem 1rem;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: linear-gradient(45deg, #1aa34a, #1DB954);
            transform: scale(1.02);
        }

        .login-container a, .modal-content a {
            color: var(--spotify-green);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .login-container a:hover, .modal-content a:hover {
            color: #fff;
            text-decoration: underline;
        }

        .footer {
            margin-top: 20px;
            padding: 1rem 0;
            text-align: center;
            font-size: 0.75rem;
            color: #b3b3b3;
        }
        .footer p, .footer img {
            margin-bottom: 3px;
        }

        .login-container hr, .modal-content hr {
            border-top: 1px solid #3e3e3e;
            margin: 1rem 0;
        }

        .footer img {
            width: 20px;
            vertical-align: middle;
            margin-left: 5px;
        }

        /* Modal specific styling */
        .modal-content {
            background-color: var(--card-dark);
            color: white;
            border: 1px solid var(--input-dark);
            border-radius: 12px;
        }

        .modal-header {
            border-bottom: 1px solid var(--input-dark);
        }

        .modal-footer {
            border-top: 1px solid var(--input-dark);
        }

        .btn-close {
            filter: invert(1); /* Makes the close button white */
        }

        /* Guide Content Styling */
        .step {
            margin-bottom: 1.5rem;
 
            border-left: 4px solid var(--accent-purple);
            background-color: #1a1a1a;
            border-radius: 4px;
        }

        .step-title {
            font-weight: bold;
            color: var(--spotify-green);
            margin-bottom: 0.5rem;
            display: block;
            font-size: 1.1rem;
        }

        .guide-content p, .guide-content ol, .guide-content ul, .guide-content li {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.6;
            text-align: left;
        }
        .guide-content strong {
            color: white;
        }

        .code-highlight {
            background-color: var(--input-dark);
            color: #ffc107;
            padding: 2px 5px;
            border-radius: 3px;
            font-family: monospace;
            font-size: 0.9em;
            word-break: break-all;
        }
		.select2-container {
            width: 100% !important; 
        }

        .select2-container .select2-selection--single {
            height: 40px !important;
            border: none !important;
            background-color: var(--input-dark) !important;
            color: white !important;
            border-radius: 6px !important;
        }
        
        /* ADDED: Align the selection text vertically */
        .select2-container--default .select2-selection--single .select2-selection__rendered {
            line-height: 40px !important;
            color: white !important;
            /* Match form-control padding-left which is 0.75rem in this case (since we removed the icon) */
            padding-left: 0.75rem !important; 
        }
        
        .select2-container--default .select2-selection--single .select2-selection__arrow {
            height: 40px !important;
        }
        
        /* ... (The rest of the Select2 dropdown/search/highlight styles remain the same) ... */
        .select2-dropdown {
            background-color: var(--card-dark) !important;
            border: 1px solid var(--input-dark) !important;
            border-radius: 6px;
        }
        .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
            background-color: var(--spotify-green) !important;
            color: white !important;
        }
        .select2-search--dropdown .select2-search__field {
            background-color: var(--input-dark) !important;
            border: 1px solid var(--spotify-green) !important;
            color: white !important;
        }
        .select2-container--default .select2-results__option--selected {
            background-color: #383838 !important;
            color: #ccc !important;
        }