/* ===== GLOBAL WRAPPER ===== */
.rdscf-wrapper{
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: #0b0b0f;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    font-family: Arial, sans-serif;
    color: #f5f5f5;
}

/* ===== TITLE ===== */
.rdscf-title{
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: #d4af37;
    letter-spacing: 1px;
}

/* ===== CONTROLS BOX ===== */
.rdscf-controls{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

/* ===== SELECT FIELDS ===== */
.rdscf-field{
    display: flex;
    flex-direction: column;
    min-width: 180px;
}

.rdscf-field label{
    margin-bottom: 6px;
    font-size: 14px;
    color: #d4af37;
}

.rdscf-field select{
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
    outline: none;
}

/* ===== BUTTON ===== */
#rd-find-btn{
    padding: 12px 20px;
    background: linear-gradient(45deg, #d4af37, #f5d76e);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    color: #111;
    transition: 0.3s;
}

#rd-find-btn:hover{
    transform: scale(1.05);
    box-shadow: 0 0 15px #d4af37;
}

/* ===== RESULT CARDS ===== */
.rd-card{
    background: #111218;
    padding: 15px;
    margin: 10px 0;
    border-radius: 12px;
    border-left: 4px solid #d4af37;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.rd-card h3{
    margin-bottom: 8px;
    color: #d4af37;
}

/* ===== NOTES STYLE ===== */
.rd-notes,
.rd-formula,
.rd-chords{
    font-size: 16px;
    color: #e6e6e6;
    line-height: 1.6;
}

/* ===== CHORDS HIGHLIGHT ===== */
.rd-chords{
    color: #f5d76e;
    font-weight: 500;
}

/* ===== MOBILE RESPONSIVE ===== */
@media(max-width:600px){
    .rdscf-controls{
        flex-direction: column;
        align-items: center;
    }

    .rdscf-field{
        width: 100%;
    }

    #rd-find-btn{
        width: 100%;
    }
}