
.rcg-container {
    max-width: 500px;
    margin: auto;
    text-align: center;
    font-family: Arial, sans-serif;
    padding: 1rem;
}

.rcg-color-box {
    height: 150px;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.rcg-code {
    font-weight: bold;
    margin: 0.5rem 0;
}

.rcg-copy-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rcg-copy-buttons button {
    padding: 0.5rem 1rem;
    border: none;
    background-color: #444;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.rcg-copy-buttons button:hover {
    background-color: #666;
}

.rcg-sliders label {
    display: block;
    margin: 1rem 0;
    font-size: 0.9rem;
    text-align: left;
}

.rcg-sliders input {
    width: 100%;
}

#generateColor {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #0073aa;
    color: white;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

#generateColor:hover {
    background-color: #005d8f;
}

#generateColor svg {
    width: 1.2rem;
    height: 1.2rem;
}
