#Tab_Result .page__content {
    padding: 0px;
}

.tabbar__label:first-child {
    font-size: 15px;
}

.SearchResult_Header {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background-color: var(--toolbar-background-color);
    color: #555;
    position: fixed;
    width: 100%;
    z-index: 100;
    font-weight: bold;
    height: 35px;
    box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.1);
}

#SearchResult_ManHours_Container,
#SearchResult_Vehicle_Container {
    padding-top: 35px;
}

.SearchResult_Header span {
    padding: 1px 5px;
    border-radius: 5px;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 10em;
    white-space: nowrap;
}

.SearchResult_Header .Maker {
    background-color: var(--square-shade-color-1);
}
.SearchResult_Header .Kind {
    background-color: var(--square-shade-color-2);
}
.SearchResult_Header .ModelYear {
    background-color: var(--square-shade-color-3);
    min-width: min-content;
}
.SearchResult_Header .Engine {
    background-color: var(--square-shade-color-4);
    min-width: min-content;
}

.SearchResult_BlankMessage {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: #777;
}

.SearchResult_List {
    background-color: transparent;
}

.SearchResult_List .CategoryName {
    font-weight: 900;
    color: #333;
}

.ItemsList {
    border-radius: 10px;
}

.ItemsList .ItemsItem {
    border-bottom: 1px dashed #ccc;
    padding: 0px 6px 0px 14px;
}

.ItemsList .ItemContent {
    display: flex;
    flex-wrap: wrap;
    row-gap: 5px;
    justify-content: space-between;
}

.SearchResult_List .Items_Name {
    font-size: 13px;
    color: #555;
    flex-grow: 1;
}

.SearchResult_List .Items_Value {
    font-weight: bold;
    min-width: 100px;
    text-align: right;
    flex-grow: 1;
    color: #3333cc;
    white-space: pre-wrap;
}