/* Delete reason modal */
.tx-sy-club .delete-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
}

.tx-sy-club .delete-modal-box {
    background: #fff;
    padding: 35px 40px;
    border-radius: 8px;
    max-width: 520px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.tx-sy-club .delete-modal-box h3 {
    margin-top: 0;
    color: #00314D;
}

.tx-sy-club .delete-modal-subtitle {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}

.tx-sy-club .delete-modal-reasons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.tx-sy-club .delete-modal-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
}

.tx-sy-club .delete-modal-comment {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
}

.tx-sy-club .delete-modal-comment textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    resize: vertical;
    box-sizing: border-box;
}

.tx-sy-club .delete-modal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}


.tx-sy-club .alert {
    margin-bottom: 20px;

}

.tx-sy-club .alert.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.tx-sy-club .alert.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}