/* Site-specific styles for Collection Keeper Pro Web */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.navbar-brand i {
    font-size: 1.5rem;
}

/* Card hover effects */
.card {
    transition: box-shadow 0.2s ease-in-out;
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Form styling */
.form-label {
    font-weight: 500;
}

/* Table styling */
.table th {
    font-weight: 600;
    white-space: nowrap;
}

/* Badge styling */
.badge {
    font-weight: 500;
}

/* Button group in tables */
.btn-group-sm .btn {
    padding: 0.25rem 0.5rem;
}

/* Footer styling */
.footer {
    border-top: 1px solid #dee2e6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .table-responsive {
        font-size: 0.875rem;
    }
}
