.color-picker-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
@media (min-width: 768px) {
    .color-picker-layout {
        grid-template-columns: auto 1fr;
        align-items: flex-start;
    }
}
.picker-ui-container {
    margin: 0 auto;
    min-height: 340px;
}
#color-preview {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
}
.button-full {
    width: 100%;
    margin-bottom: 25px;
}
.color-options {
    margin-bottom: 20px;
}
.color-values {
    display: grid;
    gap: 15px;
}
.value-group {
    display: flex;
    align-items: center;
}
.value-group label {
    font-weight: bold;
    width: 60px;
}
.value-group input {
    flex-grow: 1;
    padding: 8px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    background-color: #f8f9fa;
}
.value-group .copy-btn {
    padding: 8px 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-left: none;
    background-color: #eee;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
}
.value-group .copy-btn:hover {
    background-color: #ddd;
}
.picker-layout-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}
.picker-layout-selector label {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.picker-layout-selector input {
    margin-right: 4px;
}