/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background-color: white;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-50px);
    opacity: 0;
    transition: all 0.4s ease;
    overflow: hidden;
}

.modal-overlay.active .modal {
    transform: translateY(0);
    opacity: 1;
}

.modal-header {
    padding: 10px;
    border-bottom: 1px solid #eee;
	/*
    #display: flex;
    #justify-content: space-between;
    #align-items: right;
	*/
    text-align: right;
    background-color: #4a6cf7;
    color: white;
}

.modal-body {
    padding: 10px;
    text-align: center;
	/*
    width: 220px;
	*/
}

.modal-body p {
    margin-bottom: 20px;
    color: #555;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #e0e0e0;
}
