/* Quick Time Entry Widget Styles */
.quick-entry-widget {
    margin: 1rem 0;
}

.quick-entry-form {
    animation: slideDown 0.2s ease-out;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.quick-entry-form .card-body {
    padding: 1rem;
}

.quick-entry-form .form-label-sm {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #495057;
}

.quick-entry-form .form-control-sm,
.quick-entry-form .form-select-sm {
    font-size: 0.875rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .quick-entry-form .row > div {
        margin-bottom: 0.5rem;
    }
}
