/* === Global Success Popup Styles === */

#popup-success {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none; /* Controlled by JS */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-inner {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #777;
    background: none;
    border: none;
    line-height: 1;
}
.popup-close:hover {
    color: #333;
}

.popup-inner img {
    max-width: 80px; /* Adjusted for a cleaner look */
    margin-bottom: 20px;
}

.popup-inner h2 {
    margin: 10px 0;
    font-size: 28px;
    font-weight: bold;
    color: #111827;
}

.popup-inner h2 span {
    color: #2A66AF;
}

.popup-inner p {
    font-size: 16px;
    color: #4b5563;
    margin: 0 0 30px 0;
}

.popup-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.popup-buttons a {
    display: inline-block;
    padding: 12px 28px;
    background-color: #225D8F;
    color: white;
    text-decoration: none;
    border-radius: 24px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.popup-buttons a:hover {
    background-color: #1c4d79;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
} 