.application-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(24, 34, 62, 0.7);
    z-index: 9999;
}

.application-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.application-popup h4 {
    color: #18223E;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
    border-bottom: 2px solid #61A431;
    padding-bottom: 10px;
}

.application-popup ol {
    margin: 0;
    padding-left: 20px;
}

.application-popup li {
    color: #18223E;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 16px;
}

.application-popup .highlight-text {
    color: #61A431;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
}

.application-popup .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #18223E;
    padding: 5px;
}

.application-popup .close-btn:hover {
    color: #61A431;
}

.application-popup .ok-btn {
    background-color: #61A431;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    display: block;
    margin: 20px auto 0;
    transition: background-color 0.3s ease;
}

.application-popup .ok-btn:hover {
    background-color: #4f8a28;
}