/* Overlay */
.sfd-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Modal Box */
.sfd-modal-box {
    background-color: #18181b; /* fundo escuro como SFD */
    color: #e4e4e7;             /* texto claro */
    border-radius: 12px;
    padding: 20px 24px;
    width: 360px;
    max-width: 90%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 14px;
}

/* Botões */
.sfd-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.sfd-modal-actions .btn {
    min-width: 80px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.15s ease;
}

.btn-secondary {
    background-color: #1f1f23;
    color: #e4e4e7;
    border-color: #3f3f46;
}

.btn-secondary:hover {
    background-color: #29292e;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-danger {
    background-color: #1f1f23;
    color: #ef4444; 
    border: 1px solid #ef4444; 
    min-width: 80px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-danger:hover {
    background-color: #29292e;
    border-color: #f87171; 
    color: #f87171;
}