.navbar {
    text-align: right;
    display: block;
}
.navbar a {
    text-decoration: none;
    color: black;
    padding: 5px;
}
.nav:hover {
    text-decoration: underline;
}
.nav_img:hover {
    background-color: lightblue;
    border-radius: 20px;
}
.tube, .waffle, .login {
    width: 20px;
    height: auto;
}
/*Search Bar*/
.container {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}
.google {
    width: 500px;
    height: auto;
    padding-top: 50px;
    padding-bottom: 20px;
    margin-top: 40px;
}
.search {
    display: flex;
    align-items: center;
    background-color: #87c5e8;
    border-radius: 30px;
    padding: 5px 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.search-input {
    border: none;
    outline: none;
    padding: 10px;
    font-size: 16px;
    border-radius:30px;
    flex: 1;
}
.search-btn {
    background: #7e97dc;
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}
.search-btn:hover {
  background: #658586;
}
