﻿
.custom-alert {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.custom-alert-content {
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    position: relative;
    max-width: 400px;
    width: 350px;
    text-align: center;
    border-radius: 8px;
}

.close-alert {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

.alert-title {
    font-size: 14px;
    margin-bottom: 10px;
    margin-top: 13px;
}

.alert-message {
    font-size: 18px;
    margin-bottom: 20px;
}

.ok-button {
    padding: 6px 20px;
    background: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.dangersymbol {
    padding: 9px 30px 11px 30px;
    border: 2px solid #f43a26;
    border-radius: 100%;
    font-size: 45px;
    color: #f43a26;
    font-weight: 900;
}
.confirm {
    font-weight: 600;
    font-size: 25px;
    padding: 0px!important;
    margin: 0px!important;
}

/*pop up box*/
.popup-alert {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popupcustom-alert-content {
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    position: relative;
    max-width: 400px;
    width: 350px;
    text-align: center;
    border-radius: 8px;
}

.popupclose-alert {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

.popupalert-title {
    font-size: 14px;
    margin-bottom: 10px;
    margin-top: 13px;
}

.popupalert-message {
    font-size: 18px;
    margin-bottom: 20px;
}

.popupok-button {
    padding: 6px 20px;
    background: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
