.color-swatch {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 1rem auto;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border: 3px solid white;
            transition: transform 0.2s;
        }
        .color-swatch:hover {
            transform: scale(1.02);
        }
        .color-card {
            background: white;
            border-radius: 20px;
            padding: 1.2rem;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            transition: all 0.2s;
        }
        .result-badge {
            background-color: #f8f9fa;
            border-left: 4px solid var(--primary-color);
            padding: 1rem;
            margin: 0.75rem 0;
        }
        .zodiac-icon {
            font-size: 2rem;
            margin-right: 8px;
            vertical-align: middle;
        }
        .example-badge {
            background-color: #e9ecef;
            border-radius: 30px;
            padding: 0.3rem 0.9rem;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.2s;
        }
        .example-badge:hover {
            background-color: var(--primary-color);
            color: white;
        }
        .car-style-tag {
            background-color: #f1f3f5;
            border-radius: 30px;
            padding: 0.4rem 1rem;
            font-size: 0.85rem;
            transition: all 0.2s;
            cursor: pointer;
            display: inline-block;
        }
        .car-style-tag.active {
            background-color: var(--primary-color);
            color: white;
        }
        .hex-code {
            font-family: monospace;
            font-weight: 600;
            letter-spacing: 1px;
        }
        .color-psychology {
            font-size: 0.9rem;
            background: #fef7e0;
            border-radius: 12px;
            padding: 1rem;
        }
        .disclaimer-box {
            background: #f1f9fe;
            border-left: 4px solid #6c757d;
            padding: 1rem;
            margin-top: 1rem;
            font-size: 0.85rem;
        }