body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 20px;
}

.container-header {
    display: flex;
    align-items: center;
    margin: 20px;
    gap: 400px;
}

.header-title {
    font-size: 20px;
    font-weight: bold;
}

.event-title-section {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.navbar {
    background-color: #333;
    overflow: hidden;
    padding: 0;
}
.navbar a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
.navbar a:hover, .dropdown:hover .dropbtn {
    background-color: #575757;
}

.content {
    display: flex;
    padding: 20px;
}

.large-image {
    max-width: 40%;
    height: auto;
    border-radius: 8px;
    margin-right: 20px;
}

/* Event table styling */
.event-table {
    width: 50%;
}

table {
    border-collapse: collapse;
    width: 100%;
    font-size: 14px;
    margin-top: 10px;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd; /* Light line to separate rows */
}

th {
    background-color: #f2f2f2;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 2px solid #ddd; /* Slightly stronger bottom border for header */
}

/* Alternating row colors */
tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

tbody tr:nth-child(even) {
    background-color: #fff;
}

/* Hover effect on rows */
tbody tr:hover {
    background-color: #f1f1f1;
    cursor: pointer;
}

/* Event title styling */
.event-title a {
    font-size: 16px;
    font-weight: bold;
    color: #0066cc;
    text-decoration: none;
}

.event-title a:hover {
    text-decoration: underline;
}

/* Event description styling */
.event-description {
    font-size: 12px;
    color: #555;
}
        /* Responsive design for smaller screens */
        @media (max-width: 600px) {
            .container {
                flex-direction: column;
                align-items: center;
            }

            .large-image {
                max-width: 100%;
                margin-right: 0;
                margin-bottom: 20px;
            }

            .event-table {
                width: 100%;
            }
        }
