@font-face {
    font-family: 'PCOAS';
    src: url('/fonts/IBMPlexSans-Regular.ttf') format('truetype');
}

body {
    font-family: 'PCOAS', Fallback, sans-serif;
    font-weight: 400;
    font-style: normal;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    background-color: #ccfbf1;
    color: #0f766e;
    transition: background-color 0.2s;
}

    .nav-link:hover {
        background-color: #99f6e4;
    }

#pagination button {
    transition: background-color 0.3s;
}

.icon-image-button {
    display: inline-block;
    padding: 0.25rem 0.75rem; /* py-1 px-3 */
    border-radius: 0.375rem; /* rounded */
    font-weight: 600; /* font-semibold */
    transition: background-color 0.2s ease;
}

    .icon-image-button:hover {
        background-color: #f3f4f6; /* hover:bg-gray-100 */
        cursor: pointer;
    }


@media (max-width: 640px) {
    #assignQty, #returnQty {
        width: 100% !important;
    }

    .flex.items-end {
        flex-direction: column;
        align-items: stretch;
    }
}

