@charset "UTF-8";
/* CSS Document */
/* Stil für den Button */
.btn-view-image {
    background-color: #2F8A99; 
    color: white; 
    padding: 10px 20px; 
    border: none; 
    cursor: pointer;
    margin-top: 10px;
    font-size: 16px;
}

.btn-view-image:hover {
    background-color: #1F4F5A;
}

/* Stil für das Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    overflow: auto;
    padding-top: 60px;
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

