.body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #f0e1c6;
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.color-picker-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 500px; 
    height: 400px;
}

.hex-display {
    display: flex;
    align-items: center;
    gap: 5px; 
    margin-bottom: 15px; 
}

#colorPicker {
    width: 100%;
    height: 75%;
    border: none;
    cursor: pointer;
}

.color-values {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.color-values label,

.hex-display label {
    font-weight: bold;
    font-size: 18px;
}

.color-values input[type="number"],
.hex-display input[type="text"] {
    width: 70px;
    padding: 10px;
    font-size: 18px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.hex-display input[type="text"] {
    width: 100px;
    background-color: #f0f0f0;
}
