/* Custom styles for GeoCacheLogger Django app */

body {
    background-color: #f8f9fa;
}

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

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

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

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn {
    border-radius: 0.375rem;
}

.table {
    background-color: white;
}

.table th {
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    color: #495057;
}

.badge {
    font-size: 0.75em;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Custom hero image styling */
.hero-image {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-image {
        height: 200px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
}

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

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

.form-check {
    margin-bottom: 0.5rem;
}

.form-check-label {
    margin-left: 0.25rem;
}

/* Pagination styling */
.pagination .page-link {
    color: #0d6efd;
}

.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
}