.rgb-picker-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.input-group {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.input-group input[type="range"] {
    width: 100%;
}

.input-group input[type="text"], .input-group input[type="color"] {
    width: 120px;
    padding: 5px;
    font-size: 16px;
}

.color-preview {
    width: 100px;
    height: 100px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.btn {
    padding: 10px 20px;
    background-color: #1971c2;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn:hover {
    background-color: #1864ab;
}

.recent-colors {
    display: flex;
    gap: 5px;
}

.recent-color {
    width: 20px;
    height: 20px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    cursor: pointer;
}
