
.search-panel input[type=text], .search-panel select
{
	width: 180px;
	box-sizing : border-box;
}

.no-table-border
{ 
	border-collapse: collapse; 
	border-spacing: 0; 
}

.search-results {
    display: flex;
    flex-direction: column;
}
 
 .search-item {
    display: flex;
    gap: 12px;
    padding: 10px;
}

.search-item:hover {
    background: #f5f5f5;
}

.search-item .search-icon {
    width: 36px;
    height: 36px;
    font-size: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
    flex-shrink: 0;
	border-radius: 50%;
	flex-shrink: 0;
	color: white;
}

.search-item .material-symbols-outlined {
    font-size: 22px;
	line-height: 1;
}

.search-content {
    flex: 1;
    min-width: 0;
}

.search-title {
    font-weight: 600;
    margin-bottom: 2px;
}

.search-type {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 4px;
}

.search-description {
    color: #555;
    font-size: 0.9em;
}

.search-action {
    width: 40px;
    height: 40px;

    border-radius: 50%;
    border: 1px solid #ddd;

    background: white;
    color: #1976D2;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    transition: background-color .15s,
                border-color .15s,
                transform .1s;
}

.search-action:hover {
    background: #f5f9ff;
    border-color: #1976D2;
}

.search-action:active {
    transform: scale(.95);
}

.search-action .material-symbols-outlined {
    font-size: 26px;
}