a {
    text-decoration: none;
    color: #ff1e00;
}

body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0;
    background-color: #eee5d3;
    color: #dd9393;
}

#head {
    background-color: #050505;
    color: white;
}

/* Navigation Styles */
.navbar {
    position: sticky;
    background-color: #ff8b66;
    table-layout: initial;
    font-style: oblique;
    display: flex;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.nav-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #ff8b66;
    display: flex;
}

li {
    border-right: 1px solid #ff6f61;
}

li:last-child {
    border-right: none;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a:hover {
    background-color: #ff6f61;
}

li.right {
    margin-left: auto;
}
/* Media Query for Large Screens */
@media screen and (min-width: 601px) {
    .nav-list {
        margin-left: auto; /* Right justify the entire navigation */
    }

    li {
        border-left: 1px solid #ff6f61; /* Darker Coral Border on the left of each item */
    }

    li:last-child {
        border-left: none; /* Remove the left border on the last item */
    }
}

/* Media Query for Small Screens */
@media screen and (max-width: 600px) {
    .navbar {
        flex-direction: column;
    }

    .menu-toggle {
        display: block;
        padding: 14px 16px;
        text-align: center;
        font-size: 20px;
    }

    .nav-list {
        display: none;
    }

    .nav-list.show {
        display: flex;
        justify-self: right;
        flex-direction: column;
    }

    li {
        border-bottom: 1px solid #ff6f61;
        border-right: none;
    }

    li.right {
        float: none;
        text-align: center;
    }
}

/* Container Styles */
.container {
    margin: 20px;
    padding: 20px;
    background-color: #fff;
    color: #333;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Event Details Styles */
.event-details table {
    width: 100%;
    border-collapse: collapse;
}

.event-details td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.feedback-section {
    margin-top: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.feedback-section h3 {
    color: #65cc70;
}

.feedback-section p {
    color: #333;
}

.feedback-link {
    color: #65cc70;
    font-weight: bold;
    text-decoration: none;
}

.feedback-link:hover {
    text-decoration: underline;
}

td {
    color: #3e6fd8;
}

th {
    color: rgb(25, 0, 255);
}

/* Styles for Themes */
:root {
    --primary-color: #f00;
    --secondary-color: #0f0;
    --background-default: #efefef;
    --background-paper: #13a500;
    --text-primary: #333;
    --text-secondary: #454545;
    --text-error: #b33;
}

/* Dark Theme Styles */
.dark-theme {
    --primary-color: rgb(180, 27, 147);
    --secondary-color: #0f0;
    --background-default: #333;
    --background-paper: #111;
    --text-primary: #fff;
    --text-secondary: #eee;
    --text-error: #b33;
    body{
        background-color: aqua;
    }
}
/* Default Theme Styles */
body.default {
    --primary-color: #f00;
    --secondary-color: #0f0;
    --background-default: #efefef;
    --background-paper: #fff;
    --text-primary: #333;
    --text-secondary: #454545;
    --text-error: #b33;
}

/* Dark Theme Styles */
body.dark {
    --primary-color: rgb(20, 7, 206);
    --secondary-color: rgb(255, 238, 0);
    --background-default: #333;
    --background-paper: #111;
    --text-primary: #b1dfdc;
    --text-secondary: #eee;
    --text-error: #b33;
    background-color: rgb(61, 235, 84); /* Additional style for the dark theme */
}
.logo {
    height: 60px; /* Adjust the height as needed */
    margin-right: 10px; /* Adjust the margin as needed */
    border-radius: 50%; /* Make the logo circular */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

/* Additional styles for the navbar */
.navbar {
    background-color: #333; /* Dark background color */
    padding: 15px 20px; /* Add padding for spacing */
    display: flex;
    align-items: center; /* Center items vertically */
    justify-content: space-between; /* Space out the items evenly */
}

.nav-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center; /* Center items vertically */
}

li {
    margin-right: 20px; /* Adjust the spacing between items */
}

li:last-child {
    margin-right: 0; /* Remove margin for the last item */
}

li a {
    color: white; /* Text color */
    font-weight: bold;
    font-size: 16px; /* Adjust the font size */
    text-decoration: none; /* Remove underlines */
    transition: color 0.3s ease; /* Smooth color transition */
}

li a:hover {
    color: #ff6f61; /* Hover color */
}

/* Hamburger menu icon */
.menu-icon {
    display: none; /* Initially hide the menu icon for larger screens */
    cursor: pointer;
    font-size: 24px;
    color: white;
}

/* Responsive styles for smaller screens */
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column; /* Stack items vertically on small screens */
        align-items: flex-start; /* Align items to the start on small screens */
    }

    .nav-list {
        display: none; /* Initially hide the list on small screens */
        width: 100%;
        flex-direction: column;
        position: absolute;
        background-color: #333;
        top: 65px;
        left: 0;
        z-index: 1;
    }

    .nav-list.show {
        display: flex; /* Show the list when the show class is added */
    }

    .menu-icon {
        display: block; /* Show the menu icon on small screens */
    }

    li {
        margin-right: 0;
        margin-bottom: 10px; /* Add spacing between list items on small screens */
    }
}
