/* Custom Alert Dialog Styles */
.custom-alert {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: sans-serif;
    background-color: #FFF;
    z-index: 10000;
}


.message-container {
    min-width: 400px;
    max-width: 500px;
    overflow: hidden;
    text-align: center;
}

.alert-content {
    padding: 16px;
}


.alert-message {
    margin: 40px;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    text-align: center;
}