/* styles.css */

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

h1 {
    margin-bottom: 20px;
}

.controls {
    margin-bottom: 20px;
}

.controls label {
    margin-right: 10px;
    font-weight: bold;
}

#colorWheelContainer {
    position: relative;
    display: inline-block;
}

#colorWheelCanvas {
    border-radius: 50%;
    max-width: 100%;
    height: auto;
}

.selector {
    position: absolute;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px; /* Center the selector */
    border: 2px solid #fff;
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 5px #000;
}

#colorInfo {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: center;
}

.color-info-item {
    margin: 5px;
    padding: 10px;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    min-width: 100px;
}
