/* Minimal global button styling - let theme handle colors */

/* Just ensure consistent sizing for action buttons */
.edit-btn,
.delete-btn,
button.edit-btn,
button.delete-btn {
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    font-size: 1rem !important;
    margin-right: 5px !important;
}

.edit-btn:hover,
.delete-btn:hover,
button.edit-btn:hover,
button.delete-btn:hover {
    transform: translateY(-2px) !important;
}

.edit-btn i,
.delete-btn i {
    font-size: 1rem !important;
}