* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

header {
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 100px;
    height: 80px;
}

header nav a {
    color: white;
    text-decoration: none;
    margin-left: 1rem;
}

#menuIcon {
    display: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    filter: invert(1);
}

.form-control {
    border: 1px solid #cccccc9b;
    border-radius: 4px;
    padding: 12px 8px;
    width: 100%;
}

/* Remove blue focus glow */
.form-control:focus {
    box-shadow: none !important;
    border-color: #5a5a5a;
    /* optional: keep default border color */
}

/* Optional: also remove on hover */
.form-control:hover {
    box-shadow: none !important;
}

.w-max-content {
    width: max-content !important;
}

.bg-light {
    background-color: #E5E5E5 !important;
}

@media (max-width:768px) {
    nav {
        background-color: red;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        z-index: 1000;
        width: 80%;
        height: 100vh;
        background-color: black;
        display: flex;
        flex-direction: column;
        box-shadow: 0px 9px 9px white;
        padding: 30px 10px;
        gap: 20px;
        transition: 0.3s;
    }

    nav a {
        margin: 0 !important;
    }

    header {
        padding: 0px 20px;
    }

    #menuIcon {
        display: block;
        width: 30px;
        height: 30px;
        cursor: pointer;
        filter: invert(1);
    }
}