﻿.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    color: #555;
}

.popup {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 400px;
    text-align: center;
}

.popup-title {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.popup-description {
    font-size: 16px;
    margin-bottom: 20px;
}

.popup-input {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.popup-button {
    padding: 10px 20px;
    background-color: #3e7593;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 0px 3px 0px 3px;
    transition: all linear 0.2s;
}

.popup-button:hover {
    background-color: #245a78;
}
