/* Custom styles for Loom Transcript Extractor */

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

.navbar-brand {
    font-weight: bold;
}

.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    margin-bottom: 20px;
}

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

.table th {
    background-color: #f1f1f1;
}

.footer {
    border-top: 1px solid #e9ecef;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card {
        margin-bottom: 15px;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }
}

/* Form styling */
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Button hover effect */
.btn-primary:hover {
    transform: translateY(-2px);
    transition: transform 0.2s;
}

/* Table row hover effect */
.table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
}
