.property-table th,
        .property-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid var(--border-color);
        }
        .input-group-custom {
            margin-bottom: 1rem;
        }
        .deep-dive {
            margin: 1.8rem 0;
        }
        .deep-dive p {
            text-align: justify;
        }
        .unit-note {
            font-size: 0.9rem;
            color: #6c757d;
        }
        .coord-input {
            margin-bottom: 0.5rem;
        }
        .color-preview-large {
            width: 100%;
            height: 120px;
            border-radius: 8px;
            border: 2px solid #ddd;
            transition: background-color 0.3s ease;
            margin-top: 0.5rem;
        }
        .color-preview-large .color-hex-label {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            font-weight: 600;
            font-size: 1.2rem;
            text-shadow: 0 1px 4px rgba(255, 255, 255, 0.7);
            color: #333;
        }
        .color-preview-large .color-hex-label.dark-text {
            color: #fff;
            text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
        }
        .cmyk-result-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.75rem;
            margin: 1rem 0;
        }
        .cmyk-chip {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 0.75rem 0.5rem;
            text-align: center;
            border: 1px solid #e9ecef;
        }
        .cmyk-chip .label {
            font-size: 0.75rem;
            text-transform: uppercase;
            font-weight: 600;
            color: #6c757d;
            letter-spacing: 0.5px;
        }
        .cmyk-chip .value {
            font-size: 1.25rem;
            font-weight: 700;
            font-family: 'Courier New', monospace;
        }
        .cmyk-chip .value.cyan {
            color: #00bcd4;
        }
        .cmyk-chip .value.magenta {
            color: #e91e63;
        }
        .cmyk-chip .value.yellow {
            color: #fdd835;
        }
        .cmyk-chip .value.black {
            color: #212121;
        }
        .rgb-result {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin: 0.5rem 0;
            flex-wrap: wrap;
        }
        .rgb-chip {
            background: #f8f9fa;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            border: 1px solid #e9ecef;
            font-family: 'Courier New', monospace;
            font-weight: 600;
        }
        .rgb-chip.red {
            color: #dc3545;
        }
        .rgb-chip.green {
            color: #28a745;
        }
        .rgb-chip.blue {
            color: #007bff;
        }
        .color-input-wrapper {
            display: flex;
            gap: 1rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .color-input-wrapper input[type="color"] {
            width: 60px;
            height: 60px;
            border: 2px solid #ddd;
            border-radius: 8px;
            padding: 2px;
            cursor: pointer;
        }
        .color-input-wrapper input[type="text"] {
            font-family: 'Courier New', monospace;
            font-size: 1.1rem;
            flex: 1;
            min-width: 140px;
        }
        .hex-prefix {
            font-size: 1.2rem;
            font-weight: 600;
            color: #6c757d;
        }
      
        .result-container @media (max-width: 576px) {
            .cmyk-result-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .color-input-wrapper input[type="color"] {
                width: 48px;
                height: 48px;
            }
        }