body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #edecee;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

h1 {
    font-family: 'Pirata One', system-ui;
    text-align: center;
    font-size: 4em;
    margin-bottom: 20px;
    font-weight: 500;
}

.upload-message {
    text-align: center;
    text-shadow: 2px 2px 4px #9370d4;
    font-size: 32px;
    margin-top: 80px;
    margin-bottom: 20px;
    color: #333;
}

button {
    margin-top: 10px;
    padding: 10px 15px;
    border: none;
    background-color: #caafee;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #b7a1d4;
}

.navigation-buttons {
    text-align: center;
    margin: 15px 0;
}

.navigation-buttons button {
    padding: 10px 20px;
    margin: 0 10px;
}

.image-item button.delete-image {
    position: absolute;
    top: 0;
    right: 0;
    background: #d47c7c !important;
    padding: 10px;
}

.image-item button.delete-image:hover {
    background: #e60000 !important;
}

.image-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
    position: relative;
}

.image-item {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.image-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.image-item h3,
.image-item p {
    font-size: 18px;
    margin-bottom: 10px;
}

.credits {
    text-align: center;
    margin-top: 20px;
}

.add-image-form {
    display: flex;
    flex-direction: column;
    align-items: center; 
    margin-top: 20px; 
    padding: 20px; 
    background-color: #dcd5e9; 
    border-radius: 10px; 
}

.user-auth {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
    z-index: 100;
}

.user-auth span {
    margin-right: 10px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.auth-toggle {
    padding: 8px 16px;
    display: inline-block;
}

.gallery-selection {
    text-align: center;
    margin: 20px 0;
}

.gallery-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    gap: 20px;
}

.prev-gallery, .next-gallery {
    padding: 12px 20px;
    background-color: #87CEEB;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.prev-gallery:hover:not(:disabled), 
.next-gallery:hover:not(:disabled) {
    background-color: #6CB4EE;
}

.prev-gallery:disabled, 
.next-gallery:disabled {
    background-color: #B0C4DE;
    cursor: not-allowed;
    opacity: 0.6;
}

.current-gallery-info {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin: 10px 0;
}

.gallery-title {
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;
}