@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');

/* button, .navbar-link, .logout {
    transition: transform 0.3s ease, background-color 0.3s ease;
} */

/* .navbar-link:hover, .logout:hover {
    transform: scale(1.05);
} */

.navbar {
    width: 100%;
    background-color: #007bff;
    overflow: hidden;
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    top: 0;
    left: 0;
}

.navbar .left, .navbar .right {
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.navbar-link, .logout {
    border-radius: 8px;
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
    margin-left: 5px;
    margin-right: 5px;
}

.navbar-link:hover {
    background-color: #0056b3;
    text-decoration: none;
    color: white;
}

.logout {
    background-color: rgb(221, 60, 60);
}

.logout:hover {
    text-decoration: none;
    background-color: rgb(173, 66, 66);
}

.navbar .logo {
    font-weight: bold;
    font-family: "Unbounded";
    font-size: 1.2em;
    color: white;
    margin-right: 20px;
    cursor: pointer;
}

.logo i {
    background: -webkit-linear-gradient(#ffffff, #ff7700); 
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

select {
    font-size: 16px;
    background-color: white;
    color: #333;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23666" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

select:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
}

input:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
}

input[name="report"]:focus {
    border-color: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }
    .navbar .left, .navbar .right {
        flex-direction: column;
        width: 100%;
    }
    .navbar-link, .logout {
        box-sizing: border-box;
        width: 100%;
        text-align: left;
        margin-top: 5px;
    }
    .navbar .logo {
        margin-bottom: 10px;
    }
}
