
.badge-yes {
    background: linear-gradient(90deg, #28a745, #218838);
    color: #fff;
    border-radius: 12px;
    padding: 4px 10px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.4);
}
.badge-no {
    background: linear-gradient(90deg, #dc3545, #c82333);
    color: #fff;
    border-radius: 12px;
    padding: 4px 10px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.4);
}

/* Action Buttons Magic */
.btn-magic {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.btn-magic:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
