div.title-search-result {
	border:1px solid #c6c6c6;
	/* display:none; */
	overflow:hidden;
	z-index:205;
}

table.title-search-result {
	border-collapse: collapse;
	border:none;
	width:10%;
}

table.title-search-result th {
	background-color:#F7F7F7;
	border-right:1px solid #e8e8e8;
	color:#949494;
	font-weight:normal;
	padding-top:2px;
	padding-bottom:2px;
	padding-left:14px;
	padding-right:12px;
	text-align:right;
	vertical-align:top;
	white-space:nowrap;
	width:1%;
}

table.title-search-result td {
	background-color:white;
	color:black;
	font-weight:normal;
	padding-top:2px;
	padding-bottom:2px;
	text-align:left;
	white-space:nowrap;
}

table.title-search-result td.title-search-item {
	padding-left:8px;
	padding-right:15px;
}

table.title-search-result td.title-search-item a {
	padding-left:4px;
	padding-right:15px;
	text-decoration: none;
	color:black;
	vertical-align:top;
	display:block;
}

table.title-search-result td.title-search-item img {
	vertical-align:top;
}

table.title-search-result td.title-search-item b {
	color:#0434ff;
	font-weight:bolder;
}

table.title-search-result tr.title-search-selected td
,table.title-search-result tr.title-search-selected a
,table.title-search-result tr.title-search-selected td.title-search-more a
{
	/* background-color:#fff2be; */
}

table.title-search-result td.title-search-more {
	font-size:11px;
	font-weight:normal;
	padding-right:15px;
	padding-left:24px;
	padding-top:0px;
}

table.title-search-result td.title-search-more a
{
	padding-left:12px;
	padding-right:15px;
	text-decoration:none;
	color:#999999;
}

table.title-search-result td.title-search-all {
	padding-left:24px;
	padding-right:15px;
}

table.title-search-result td.title-search-all a
{
	padding-left:4px;
	text-decoration:none;
	color:#808080;
}

table.title-search-result td.title-search-separator
, table.title-search-result th.title-search-separator {
	padding-top:0px;
	padding-bottom:0px;
	font-size:4px;
}

div.title-search-fader {
	display:none;
	background-image: url('images/fader.png');
	background-position: right top;
	background-repeat: repeat-y;
	position:absolute;
}










.title-search-result {
    background: #fff;
    border: 1px solid #e1e5eb;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    overflow: hidden;
    animation: searchResultFadeIn 0.2s ease;
}

@keyframes searchResultFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-category {
    padding: 12px 0;
}

.search-category:not(:last-child) {
    border-bottom: 1px solid #f0f2f5;
}

.search-category-title {
    padding: 0 16px 8px;
    font-size: 13px;
    font-weight: 600;
    color: #5e6b7e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-category-items {
    display: flex;
    flex-direction: column;
}

.search-item {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    color: #1d2a3a;
    text-decoration: none;
    transition: background-color 0.2s ease;
    gap: 10px;
}

.search-item:hover {
    background-color: #f5f7fa;
}

.search-item-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7a8f;
}

.search-item-name {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.search-item-params {
    font-size: 12px;
    color: #8a99ab;
    white-space: nowrap;
}

.search-item-all {
    font-weight: 500;
    color: #0066ff;
}

.search-item-all .search-item-name {
    color: #0066ff;
}

.search-item-more {
    color: #8a99ab;
    font-style: italic;
}

.search-item-more:hover {
    color: #1d2a3a;
}

.title-search-fader {
    display: none;
}