.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal:focus {
    outline: 3px solid #1b3a6b;
}

.modal h3, .modal p {
    margin-bottom: 10px;
}

.modal-content {
    background: white;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    margin: 10% auto;
    border-radius: 8px;
    position: relative;
}

.close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 9px;
    color: #333;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.close:focus {
    outline: 2px solid #1b3a6b;
    outline-offset: 2px;
}

.modal-content a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.modal-content a:hover {
    color: #1b3a6b;
    text-decoration: underline;
}