/* Modal Container */
.modal {
    display: none; 
	flex-direction: column;
    position: fixed;
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4); /* Black with transparency */
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
}

/* Modal Content Box */
.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    text-align: center;
    background-color: #fff;
}

/* Close Button */
.close-button {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
}

.modal h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.modal p {
    font-size: 20px;
}

.modal button {
    margin-top: 20px;
}
