/* Custom styles for the Video Acoustic Fingerprinting app */

/* Set a minimum height for the main content to push the footer down */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

/* Footer styling */
.footer {
    margin-top: auto;
    padding: 1rem 0;
    background-color: var(--bs-dark);
    color: var(--bs-light);
}

/* Card styling */
.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.card-header {
    font-weight: 500;
}

/* Form enhancements */
.form-label {
    font-weight: 500;
}

.form-control:focus, .form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Table styles */
.table-responsive {
    margin-bottom: 1rem;
}

.table {
    color: white;
}

.table th,
.table td {
    color: white !important;
}

/* Alert styling */
.alert {
    border-radius: 0.375rem;
}

/* Button enhancements */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn i {
    margin-right: 0.5rem;
}

/* Progress bar styling */
.progress {
    height: 1.5rem;
    border-radius: 0.375rem;
    margin: 1rem 0;
}

.progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.875rem;
}

/* Status badges */
.badge {
    font-size: 0.85rem;
    padding: 0.35rem 0.65rem;
}

/* Processing box styling */
.processing-status {
    text-align: center;
    padding: 1rem;
    border-radius: 0.375rem;
    background-color: rgba(0, 0, 0, 0.05);
}
