.djhub-wish-form {
    max-width: 520px;
}

.djhub-wish-form label {
    font-weight: 700;
    margin-bottom: 6px;
}

.djhub-song-autocomplete {
    position: relative;
    width: 100%;
}

.djhub-song-autocomplete .form-control {
    font-size: 16px;
    padding: 12px 14px;
    border-radius: 10px;
    box-sizing: border-box;
}

.djhub-artist-wrapper {
    position: relative;
}

.djhub-artist-wrapper.is-locked input {
    background: #f5f5f5;
    color: #999;
}

.is-confirmed {
    border-color: #28a745;
    background: #f6fff8;
}

.song-suggestions {
    margin-top: 8px;
    margin-bottom: 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 50;
}

.song-suggestion {
    width: 100%;
    display: block;
    text-align: left;
    border: 0;
    background: #fff;
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.song-suggestion:last-child {
    border-bottom: 0;
}

.song-suggestion:hover,
.song-suggestion.is-active {
    background: #f2f2f2;
}

.song-suggestion-title {
    font-size: 16px;
    font-weight: 700;
}

.song-suggestion-artist {
    margin-top: 4px;
    font-size: 14px;
    color: #666;
}

.song-suggestion-meta {
    margin-top: 3px;
    font-size: 12px;
    color: #999;
}

.song-suggestion-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    color: #666;
    font-size: 14px;
}

.song-loader {
    width: 18px;
    height: 18px;
    border: 3px solid #ddd;
    border-top-color: #333;
    border-radius: 50%;
    animation: song-loader-spin 0.8s linear infinite;
}

@keyframes song-loader-spin {
    to {
        transform: rotate(360deg);
    }
}

.song-suggestion-empty {
    width: 100%;
    border: 0;
    background: #fff;
    text-align: left;
    padding: 16px;
    color: #777;
    font-size: 14px;
}

.djhub-optional {
    font-weight: 400;
    color: #777;
    font-size: 13px;
}

.djhub-error {
    color: #b00020;
    background: #fff0f0;
    border: 1px solid #f0b5b5;
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 14px;
}

.djhub-submit-button {
    width: 100%;
    margin-top: 8px;
}

@media (max-width: 600px) {
    .song-suggestion {
        padding: 18px 16px;
        min-height: 58px;
    }

    .song-suggestion-title {
        font-size: 17px;
    }

    .song-suggestion-artist {
        font-size: 15px;
    }

    .song-suggestions {
        max-height: 42vh;
        overflow-y: auto;
    }
}