#admission-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000;
}

#admission-popup-content {
    width: 80%;
    height: 80%;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

#admission-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ec6b1c;
    color: #fff !important;
    padding: 10px 20px;
}

#admission-popup-header h2 {
	color: #fff !important;
    margin: 0;
    font-size: 1.5em;
}

#admission-popup-close {
    cursor: pointer;
    font-size: 1.5em;
}

#admission-popup-body {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center center;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.popup-image-overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.popup-image-overlay p {
    margin-bottom: 20px;
    font-size: 1.5em;
}

.popup-image-overlay a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0096B8;
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.popup-image-overlay a:hover {
    background-color: #007a99;
}

.popup-elements a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f7c236;
    color: #fff !important;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s;
    font-weight: bold;
    text-align: center;
}

.popup-elements .pop-up-text-uno {
    font-size: 1.3em;
    font-weight: 400;
}

.popup-elements #pop-up-text-dos {
    font-size: 1.2em;
    font-weight: 400;
    padding-top: 1rem;
    margin-bottom: 0 !important;
}

.popup-elements a:hover {
	color: #fff !important;
    background-color: #ec6b1c;
    text-decoration: none !important;
}