/* Modal Footer Actions */
.modal-footer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

/* Make Delete Account button smaller and centered */
.delete-account-right {
    margin: 16px auto 0 auto;
    padding: 8px 24px;
    font-size: 0.95rem;
    color: var(--loss-message-color);
    background: transparent;
    border: 1px solid transparent;
    opacity: 0.8;
    transition: opacity 0.2s;
    width: auto;
    min-width: 120px;
    max-width: 220px;
    display: block;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.delete-account-right:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Ensure back button doesn't take full width in this container */
.modal-footer-actions .back-button {
    width: auto;
    margin: 0;
}
