@charset "utf-8";
/* CSS Document */

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.menu-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, ##2c3e50, #ff758c);
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}

.menu-bar .logo {
    color: white;
    font-size: 1.5em;
    font-weight: bold;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    margin: 0 15px;
}

.menu li a {
    text-decoration: none;
    color: white;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.menu li a:hover {
    color: #ffedec;
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    background: white;
    height: 3px;
    width: 25px;
    margin: 4px 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: linear-gradient(135deg, #2c3e50, #2c3e50);
        width: 200px;
        border-radius: 8px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }

    .menu.show {
        display: flex;
    }

    .menu li {
        margin: 10px 0;
    }

    .hamburger {
        display: flex;
    }
}

/* Section Styling */
section {
    padding: 100px 20px;
    text-align: center;
}

#insert-data {
    background: #ffe3e3;
}

#search {
    background: #fff3f0;
}

#reports {
    background: #ffe8e8;
}
