/* File Type Detector Tool - Custom Styles */

/* Results cards */
#resultsContainer .card {
    border: 1px solid var(--bs-border-color);
}

#resultsContainer .card-header {
    padding: 0.75rem 1rem;
}

#resultsContainer .card-header h6 {
    color: var(--bs-body-color) !important;
    font-weight: 600;
    font-size: 0.9375rem;
}

#resultsContainer .form-label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

#resultsContainer .form-control {
    font-size: 0.875rem;
}

/* Dark mode */
[data-bs-theme="dark"] #resultsContainer .card {
    border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] #resultsContainer .card-header {
    background-color: rgba(30, 34, 42, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    #resultsContainer .form-label {
        font-size: 0.8125rem;
    }
    
    #resultsContainer .form-control {
        font-size: 0.8125rem;
    }
}

