/* test.css */

.test-page {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.test-header {
    text-align: center;
    margin-bottom: 2rem;
}

.test-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.test-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.color-btn {
    height: 80px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.color-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 1.5rem;
    justify-content: center;
}
