body {
    font-family: 'Roboto Condensed', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to bottom, #D98AA7, #F9B2B7);
}

#footer {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #000000;
}

#footer p {
    margin: 5px 0;
}

#colorPickerContainer {
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border: 10px solid #F9B2B7;
    box-sizing: border-box;
    position: relative;
}

#colorPickerGroup {
    border: 2px solid #FFB6C1;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
}

#colorCanvas {
    cursor: crosshair;
    border-radius: 8px;
    margin-bottom: 20px;
}

#magnifier {
    position: absolute;
    display: none;
    width: 70px;
    height: 70px;
    border: 1px solid black;
    border-radius: 50%;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
}

#magnifier canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.colorPalette {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.colorBox {
    width: 50px;
    height: 50px;
    margin: 5px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.colorBox:hover {
    cursor: pointer;
}

.colorBox:last-child {
    margin-right: 0;
}

label {
    font-weight: bold;
}

input[type="text"] {
    width: 80px;
    margin-left: 5px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    font-size: 14px;
}
