/* popup.css - Peyman Kamuoyu Duyurusu için */
#popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#popup-content {
    position: relative;
    background-color: #005129;
    color: #fff;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px 40px;
    border-radius: 16px;
    font-family: Arial, sans-serif;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

#popup-content h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
}

#popup-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;

}

#popup-content strong {
    font-weight: bold;
}

#popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    border: none;
    color: #000;
    font-size: 20px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    line-height: 36px;
    text-align: center;
    padding: 0;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
    z-index: 10;
}

.popup-logo {
    display: block;
    max-width: 120px;
    margin: 0 auto 10px;
}

.popup-date {
    position: absolute;
    top: 65px;
    right: 30px;
    font-size: 14px;
    color: #fff;
    opacity: 0.8;
}

.corner-top-left,
.corner-top-right,
.corner-bottom-left,
.corner-bottom-right {
    position: absolute;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
}

.corner-top-left {
    top: 0;
    left: 0;
    background-image: url('/assetsSite/img/popups/corner-tl.svg');
}

.corner-top-right {
    top: 0;
    right: 0;
    background-image: url('/assetsSite/img/popups/corner-tr.svg');
}

.corner-bottom-left {
    bottom: 0;
    left: 0;
    background-image: url('/assetsSite/img/popups/corner-bl.svg');
}

.corner-bottom-right {
    bottom: 0;
    right: 0;
    background-image: url('/assetsSite/img/popups/corner-br.svg');
}

