/* Responsive breakpoints */
@media (min-width: 640px) {
    .btn-delivery,
    .btn-delivered,
    .btn-approve,
    .btn-reject,
    .btn-edit {
        margin-right: 5px;
    }
}

/* Define Tailwind CSS classes */
.btn-delivery,
.btn-delivered,
.btn-approve,
.btn-reject,
.btn-edit {
    padding: 0.75rem 1.5rem;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    border-radius: 0.375rem;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    margin-right: 5px;
    
}

.btn-delivery,
.btn-delivered {
    background-color: #1d4ed8;
}

.btn-delivery:hover,
.btn-delivered:hover {
    background-color: #1e40af;
}

.btn-approve {
    background-color: #34d399;
}

.btn-approve:hover {
    background-color: #10b981;
}

.btn-reject {
    background-color: #ef4444;
}

.btn-reject:hover {
    background-color: #dc2626;
}

.btn-edit {
    background-color: #fbbf24;
}

.btn-edit:hover {
    background-color: #f59e0b;
}
