body {
    background-color: rgb(253, 253, 253);
    font-family: Roboto, 'Arial';
    padding-top: 90px;
    padding-left: 90px;
    padding-right: 20px;
    padding-bottom: 50px;
    height: 100%;
 }

button,
img {
    transition: filter 0.15s ease;
    cursor: pointer;
}

button:hover,
img:hover {
    filter: brightness(0.9);
}

button:active,
img:active {
    filter: brightness(1);
}

.youtube-icon-container,
.search-button,
.mic-button,
.notification-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tooltip {
    position: absolute;
    bottom: -25px;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 11px;
    border-radius: 4px;
    padding: 4px;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    transition: opacity 0.15s ease;
}

.youtube-icon-container:hover .tooltip,
.search-button:hover .tooltip,
.mic-button:hover .tooltip,
.notification-container:hover .tooltip {
    opacity: 1;
}

.youtube-icon-container .tooltip {
    bottom: -8px;
}

@media (max-width: 493px) {
    
    body {
        padding-left: 20px;
    }

    .tooltip {
        display: none;
    }
}


