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

.card {
    border-radius: 10px;
    overflow: hidden;
    border: none;
}

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

/* Form Styles */
.form-control {
    border-radius: 5px;
    padding: 10px 15px;
    border: 1px solid #ced4da;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    border-color: #86b7fe;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

/* Table Styles */
.table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 5px;
    overflow: hidden;
}

.table th {
    background-color: #343a40;
    color: white;
    font-weight: bold;
}

.table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.1);
}

/* Loading Spinner */
.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Map Link */
.map-link {
    color: #0d6efd;
    text-decoration: none;
}

.map-link:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .card-body {
        padding: 1rem;
    }
    
    .table {
        font-size: 0.9rem;
    }
}

/* Export Button */
#exportButton {
    transition: all 0.3s ease;
}

#exportButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

#resultsContainer.d-block {
    animation: fadeIn 0.5s ease-in-out;
}
