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

.controls {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

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

#colorCount {
    width: 50px;
    padding: 5px;
    font-size: 16px;
    margin-right: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.palette {
    display: flex;
}

.color {
    width: 100px;
    height: 100px;
    margin: 0 5px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.color span {
    font-size: 12px;
    text-align: center;
}

.sticky-toggle {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.sticky-toggle i {
    font-size: 20px;
}

.sticky-toggle:hover {
    background-color: #5a6268;
    cursor: pointer;
}