/* Quick Entry Component - Mobile First */
.quick-entry {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    max-width: 480px;
    margin: 0 auto;
    /* Animation */
    opacity: 0;
    animation: quickEntryFadeIn 0.5s ease forwards 0.3s;
}

.quick-entry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
    color: var(--color-text-light);
    padding: 0.625rem 0.75rem;
    min-width: 60px;
    border-radius: 10px;
    transition: all 0.2s ease;
    /* Touch target */
    min-height: 44px;
    flex: 1;
}

.quick-entry-item:hover {
    color: var(--color-text);
    background: rgba(0, 0, 0, 0.03);
}

.quick-entry-item:active {
    transform: scale(0.95);
    background: rgba(0, 0, 0, 0.05);
}

.quick-entry-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.quick-entry-icon svg {
    color: currentColor;
}

.quick-entry-label {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1;
    white-space: nowrap;
}

/* Animation */
@keyframes quickEntryFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Larger mobile (481px+) */
@media (min-width: 481px) {
    .quick-entry {
        gap: 1rem;
        padding: 1rem 1.5rem;
        max-width: 520px;
    }

    .quick-entry-item {
        padding: 0.75rem 1rem;
    }

    .quick-entry-label {
        font-size: 0.85rem;
    }
}

/* Desktop - hide when navbar is fully visible */
@media (min-width: 769px) {
    .quick-entry {
        display: none;
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .quick-entry {
        animation: none;
        opacity: 1;
    }

    .quick-entry-item {
        transition: none;
    }
}

/* Print */
@media print {
    .quick-entry {
        display: none;
    }
}
