/* Custom styles for DXF Comparison Tool */

body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.btn-primary {
    background-color: #0066cc;
    border-color: #0066cc;
}

.btn-primary:hover {
    background-color: #0052a3;
    border-color: #004d99;
}

.form-control:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.progress-bar {
    background-color: #0066cc;
}

.text-primary {
    color: #0066cc !important;
}

.border-primary {
    border-color: #0066cc !important;
}

.alert {
    border-radius: 0.375rem;
}

.fa-3x {
    font-size: 3rem;
}

/* File input styling */
.form-control[type="file"] {
    padding: 0.5rem;
}

/* Status card styling */
#statusCard {
    border-left: 4px solid #0066cc;
}

/* Legend badges */
.badge {
    font-size: 0.875em;
    padding: 0.375rem 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        margin-top: 2rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .fa-3x {
        font-size: 2rem;
    }
}

/* Loading animation */
.progress-bar-animated {
    animation: progress-bar-stripes 1s linear infinite;
}

@keyframes progress-bar-stripes {
    0% {
        background-position: 1rem 0;
    }
    100% {
        background-position: 0 0;
    }
}

/* File upload hover effect */
.form-control[type="file"]:hover {
    border-color: #0066cc;
}

/* Success and error states */
.text-success {
    color: #198754 !important;
}

.text-danger {
    color: #dc3545 !important;
}

.border-success {
    border-color: #198754 !important;
}

.border-danger {
    border-color: #dc3545 !important;
} 