.appBody {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(0 0 0 / 10%);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    z-index: 99999999;
    width: 100%;
}

/* Overlay container */
.appBody .overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Modal Box */
/* .appBody .CustomModal {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    width: 360px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3);
    text-align: left;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.1);
} */

.appBody .CustomModal {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px;
    width: 360px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3);
    text-align: left;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.1);
    flex-direction: column;
    text-align: left;
    align-items: baseline;
}
.appBody .CustomModal .modal-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    justify-content: left;
    padding: 0;
    background: transparent;
}

.appBody .CustomModal .modal-header i {
    font-size: 30px;
    margin-right: 10px;
}

.appBody .CustomModal h3 {
    margin: 0;
    font-size: 20px;
    color: #000000;
}

.appBody .CustomModal p {
    margin: 8px 0 20px;
    font-size: 14px;
    color: #616161;
    line-height: 1.4;
}

/* Buttons */
.appBody .CustomModal .modal-actions {
    display: flex;
    gap: 10px;
}

.appBody .btn {
    padding: 8px 18px;
    font-size: 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

/* Error Styles */
.appBody .error i {
    color: #ff4d4f;
}

.appBody .btn-danger {
    background: #ff4d4f;
    color: #fff;
}

.appBody .btn-danger:hover {
    background: #e63e42;
}

/* Success Styles */
.appBody .success i {
    color: #28a745;
}

.appBody .btn-success {
    background: #28a745;
    color: #fff;
}

.appBody .btn-success:hover {
    background: #218838;
}

.appBody .btn-cancel {
    background: #f1f1f1;
    color: #333;
    border: 1px solid #ddd;
}

.appBody .btn-cancel:hover {
    background: #e0e0e0;
}
