body {
    font-family: sans-serif;
    margin: 0;
    background: #114c8e;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    padding: 16px;
    margin-bottom: 32px;
}
.photo-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}
.photo-card img {
    width: 100%;
    height: auto;
    display: block;
}
.info {
    padding: 8px 12px;
}
.caption {
    font-weight: bold;
    margin-bottom: 4px;
}
.meta {
    font-size: 0.9em;
    color: #777;
}

#imprintButton {
    position: fixed;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    bottom: 14px;
    background: #114c8e;
    left: 24px;
    padding: 0 0;
    color: white;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

#imprintButton a {
    color: white;
    text-decoration: none;
}

#imprintButton:hover {
    background-color: #e11e25;
    border-radius: 6px;
    padding: 0 16px;
}

#uploadButton {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    font-size: 32px;
    padding: 0 16px;
    height: 56px;
    width: 56px;
    background-color: #e11e25;
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
}

#uploadModal {
    position: fixed;
    z-index: 1001;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container {
    background: white;
    padding: 20px;
    border-radius: 12px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.form-container input {
    width: 100%;
    margin: 6px 0;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.form-container button {
    margin-top: 12px;
    padding: 10px;
    border: none;
    background: #114c8e;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

.form-container button[type="button"] {
    background: gray;
    margin-left: 10px;
}

#uploadOverlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    z-index: 1100;
}

.DlButton {
    margin-top: 10px;
}

.DlButton a {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #e11e25, #ff4444);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(225, 30, 37, 0.3);
    transition: all 0.3s ease;
}

.DlButton a:hover {
    background: linear-gradient(135deg, #c71a20, #e11e25);
    box-shadow: 0 6px 16px rgba(225, 30, 37, 0.4);
    transform: translateY(-2px);
}

.DlButton a:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(225, 30, 37, 0.3);
}