.fixed-icon {
    position: fixed;
    bottom: 80px;
    left: 14px;
    width: 46px;
    height: 46px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.fixed-icon:hover {
	transform: scale(1.2);
}

.fixed-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.search-container {
	z-index: 99999999;
	position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 750px;
    background-color: rgba(30, 30, 30, 0.9);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
	display: flex;
	align-items: center;
}

.search-bar {
    padding: 10px;
    background-color: rgba(30, 30, 30, 0.05);
    border-bottom: 1px solid #383838;
	flex: 6
}

.search-bar input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background-color: transparent;
    border: none;
    outline: none;
    color: #bbb;
	text-align: center;
}

.search-separator {
    width: 0.1px; /* Thickness of the separator (like cursor) */
    background-color: rgba(255, 255, 255, 0.2); /* Color and transparency of the separator */
    margin: 0 0 0 0; /* Space around the separator */
	height: 40px;
}

.search-result {
	color: #bbb;
	flex: 2;
	text-align: center;
}