/* Basic styles for RecTracker */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.flash-container {
    margin-top: 1rem;
}

footer {
    border-top: 1px solid #dee2e6;
    padding-top: 1rem;
    margin-top: 3rem;
}

/* Logo styles */
header img {
    object-fit: contain;
}

/* Table styles */
.table th {
    background-color: #f8f9fa;
}

/* Form styles */
.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

/* Button styles */
.btn {
    transition: all 0.15s ease-in-out;
}

.btn:hover {
    transform: translateY(-1px);
}

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