﻿/*\/\/\/ CSS files for popup menu \/\/\/*/
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.popup_downdown_style {
    width: auto;
    background: #fff;
    border-radius: 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 30px 30px;
    color: #333;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}



.popup-header h3 {
    margin: 0;
}

.body {
    display: flex;
    text-align: center;
}

.popup-footer {
    display: flex;
    justify-content: flex-end;
}

    .popup-footer button {
        margin-left: 10px;
    }


.close-button {
    cursor: pointer;
    font-size: 20px;
    top: 0px;
    right: 10px;
    position: absolute;
}
.tableContainer {
    text-align: center;
}
