/* Color Options Styles */
.color-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    padding: 1rem;
    background-color: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.color-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.color-dot:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.color-dot.black {
    background-color: #000000;
}

.color-dot.blue {
    background-color: #0066cc;
}

.color-dot.gray {
    background-color: #808080;
}

.color-dot.pink {
    background-color: #ff69b4;
}

.color-dot.purple {
    background-color: #800080;
}

.color-description {
    color: #666;
    font-size: 1rem;
    margin: 1rem 0;
    font-style: italic;
    padding: 0.5rem;
    background-color: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: center;
} 