/* =========================
     MAIN STYLING
   ======================== */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    color: #333;
}

h1 {
    text-align: center;
    padding: 20px;
    background-color: #000;
    color: #fff;
    margin: 0;
}

ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 30px auto;
}

li {
    background: white;
    margin-bottom: 20px;
    padding: 20px;
    border-left: 5px solid #3498db;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h2 {
    margin-top: 0;
    color: #2c3e50;
}

p {
    margin: 5px 0;
}

/* ===========================
        EVENTS PAGE
   =========================== */

.event-detail {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    border-left: 6px solid #3498db;
}

.event-detail h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #fff;
}

.event-meta {
    font-size: 1em;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.5;
}

.event-description {
    font-size: 1.1em;
    line-height: 1.7;
    margin-top: 20px;
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    text-decoration: none;
    color: #3498db;
    font-weight: bold;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #21618c;
}

/* =====================
   EVENTS PAGE: Image
   ===================== */

.event-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 20px 0;
    display: block;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* =====================
   EVENT PAGE: Image
   ===================== */

.event-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 20px 0;
    display: block;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* ===========================
   ADMIN PAGE: Bookings Table
   =========================== */

.booking-table {
    width: 90%;
    margin: 40px auto;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.booking-table th,
.booking-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid #ccc;
}

.booking-table th {
    background: #3498db;
    color: white;
}

.booking-table tr:hover {
    background: #f9f9f9;
}

