body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f0f2f5;
    color: #333;
    line-height: 1.6;
}
h1, h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
}
.container {
    max-width: 900px;
    margin: 20px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.message {
    text-align: center;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
}
.message.success { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.message.error { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.message.info { background-color: #cce5ff; color: #004085; border: 1px solid #b8daff; }

#loginForm {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #f9f9f9;
}
#loginForm label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
#loginForm input[type="text"], #loginForm input[type="password"] {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}
#loginForm button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#loginForm button:hover {
    background-color: #0056b3;
}

#dashboard {
    display: none;
}
.section-header {
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.button-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}
.button-group button {
    padding: 10px 15px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.button-group button.secondary { background-color: #6c757d; }
.button-group button.danger { background-color: #dc3545; }
.button-group button:hover.primary { background-color: #218838; }
.button-group button:hover.secondary { background-color: #5a6268; }
.button-group button:hover.danger { background-color: #c82333; }

input[type="text"], textarea, select {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}
textarea { resize: vertical; min-height: 80px; }

.media-list, .event-list {
    list-style: none;
    padding: 0;
}
.media-item, .event-item {
    background-color: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    text-align: left;
}
.media-item img, .media-item video {
    max-width: 150px;
    max-height: 100px;
    object-fit: contain;
    border-radius: 5px;
}
.media-details, .event-details {
    flex-grow: 1;
}
.media-details p, .event-details p {
    margin: 5px 0;
}
.media-actions button {
    padding: 8px 12px;
    margin-left: 5px;
    border-radius: 4px;
    cursor: pointer;
}
.status-pending { color: orange; font-weight: bold; }
.status-approved { color: green; font-weight: bold; }
.status-rejected { color: red; font-weight: bold; }
.current-event-display {
    margin-bottom: 20px;
    font-size: 1.1em;
    font-weight: bold;
    color: #007bff;
}
.current-event-display span {
    color: #333;
}

.navbar {
  list-style: none;
  display: flex;
  gap: 20px;
  background-color: #004080;
  padding: 10px 20px;
}

.navbar li {
  display: inline;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.navbar a:hover {
  text-decoration: underline;
}
