/* UUID Generator Styles */

/* Mode Selector - 2 columns per row */
.mode-selector-4col {
    grid-template-columns: repeat(2, 1fr);
}

/* UUID Options Grid */
.uuid-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.uuid-options-grid .form-check {
    margin: 0;
}

/* UUID Output */
.uuid-output {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.8;
    background: var(--bs-secondary-bg);
    border: 1px solid var(--bs-border-color);
}

/* Mobile */
@media (max-width: 768px) {
    .mode-selector-4col {
        grid-template-columns: 1fr;
    }

    .mode-label {
        padding: 10px;
        gap: 8px;
    }

    .mode-icon {
        width: 36px;
        height: 36px;
    }

    .mode-icon .fsvg {
        width: 18px;
        height: 18px;
    }

    .mode-title {
        font-size: 13px;
    }

    .mode-desc {
        font-size: 10px;
    }

    .uuid-options-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Dark Mode */
[data-bs-theme="dark"] .mode-label {
    background: #1a1d23;
    border-color: #343a40;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

[data-bs-theme="dark"] .mode-icon {
    background: #2d3239;
}

[data-bs-theme="dark"] .mode-title {
    color: #e9ecef;
}

[data-bs-theme="dark"] .mode-desc {
    color: #9ca3af;
}

[data-bs-theme="dark"] .mode-label:hover {
    border-color: #495057;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

[data-bs-theme="dark"] .mode-label:hover .mode-icon {
    background: #3a3f47;
}

[data-bs-theme="dark"] .mode-input:checked + .mode-label {
    border-color: #6ea8fe;
    background: #212529;
    box-shadow: 0 2px 8px rgba(110, 168, 254, 0.2), inset 0 0 0 1px rgba(110, 168, 254, 0.2);
}

[data-bs-theme="dark"] .mode-input:checked + .mode-label .mode-icon {
    background: #6ea8fe;
}

[data-bs-theme="dark"] .mode-input:checked + .mode-label .mode-title {
    color: #6ea8fe;
}

[data-bs-theme="dark"] .mode-input:checked + .mode-label .mode-desc {
    color: #9ca3af;
}

[data-bs-theme="dark"] .uuid-output {
    background: rgba(255,255,255,0.05);
    border-color: #495057;
    color: #e9ecef;
}
