/* Waitlist Action Buttons - Standardized Size and Style */
.action-btn {
    min-width: 100px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 30px !important;
    padding: 0.375rem 1rem;
    margin: 0 0.25rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Seat button */
.action-btn.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.action-btn.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

/* Notify button */
.action-btn.btn-primary, 
.action-btn.btn-notify {
    background-color: #007bff;
    border-color: #007bff;
}

.action-btn.btn-primary:hover,
.action-btn.btn-notify:hover {
    background-color: #0069d9;
    border-color: #0062cc;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

/* SMS button */
.action-btn.btn-sms {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

.action-btn.btn-sms:hover {
    background-color: #5a6268;
    border-color: #545b62;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

/* Cancel button */
.action-btn.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

.action-btn.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

/* Icon alignment */
.action-btn i {
    margin-right: 0.25rem;
}

/* Action buttons container */
.action-buttons-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

/* Mobile optimizations */
@media (max-width: 767.98px) {
    .action-buttons-group {
        flex-direction: row;
    }
    
    .action-btn {
        flex: 1;
        min-width: 80px;
        margin: 0.125rem;
    }
}