/* Container Background */
.spotify-finder-container.dark-theme {
    max-width: 600px;
    margin: 30px auto;
    padding: 30px;
    background-color: #121212; /* Spotify Dark */
    color: #ffffff;
    border-radius: 12px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.spotify-finder-container h2 {
    color: #1DB954; /* Spotify Green */
    text-align: center;
    margin-top: 0;
}

/* Input Styles */
#spotify_input {
    width: 100%;
    padding: 12px;
    background: #282828;
    border: 1px solid #3e3e3e;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    margin-bottom: 15px;
}

#spotify_input:focus {
    outline: none;
    border-color: #1DB954;
}

/* Button Styles */
#spotify-finder-form button {
    width: 100%;
    padding: 12px;
    background-color: #1DB954;
    color: black;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

#spotify-finder-form button:hover {
    transform: scale(1.02);
    background-color: #1ed760;
}

/* Results Box */
.results-box {
    margin-top: 25px;
    padding: 20px;
    background: #181818;
    border-radius: 8px;
    border: 1px solid #282828;
}

.copy-btn {
    background: #333;
    color: #fff;
    border: none;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    margin-left: 10px;
}

/* Store Link Grid */
.store-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 15px;
}

.store-link {
    text-decoration: none;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    font-weight: bold;
}

.store-link.spotify { background: #1DB954; color: black; }
.store-link.odesli { background: #ffffff; color: black; }
.store-link:hover { opacity: 0.9; }

.error { color: #ff4d4d; }