body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
}

.background {
    background: url('images/light_background.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-top: 20px;
    font-size: 3rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.menu {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
}

.menu ul li {
    margin: 0 15px;
}

.menu ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.menu ul li a:hover {
    color: #f0e68c;
}

.slider {
    width: 80%;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.slides {
    display: flex;
    animation: slide 10s infinite;
}

.slides img {
    width: 100%;
    height: auto;
}

@keyframes slide {
    0% { transform: translateX(0); }
    25% { transform: translateX(-100%); }
    50% { transform: translateX(-200%); }
    75% { transform: translateX(-300%); }
    100% { transform: translateX(0); }
}

form {
    text-align: center;
    margin: 20px auto;
}

input, select, button {
    padding: 10px;
    margin: 5px;
    border: none;
    border-radius: 5px;
}

input, select {
    width: 200px;
}

button {
    background-color: #007BFF;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.exhibits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px;
}

.exhibit {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
}

.exhibit img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.exhibit h2 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.exhibit p {
    font-size: 1rem;
}
/* Admin Panel Styles */
.form-container {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.preview-image {
    max-width: 100%;
    border-radius: 10px;
    margin: 10px 0;
}

.button-group {
    display: flex;
    gap: 10px;
}

button.delete {
    background-color: #dc3545; /* Red */
}

button.delete:hover {
    background-color: #c82333; /* Darker red */
}

.success {
    color: #28a745; /* Green */
    text-align: center;
    font-weight: bold;
}

.error {
    color: #dc3545; /* Red */
    text-align: center;
    font-weight: bold;
}