/* ======================================
   Sidebar
   ====================================== */
#sidebar.sidebar {
    /* CSS cho sidebar container */
}

#sidebar .sidebar-widgets {
    /* CSS cho danh sách widgets */
}

#sidebar .widget-item {
    padding-bottom: 5px;
}

#sidebar .widget-search {
    /* CSS riêng cho widget search */
}

#sidebar .widget-pages {
    /* CSS riêng cho widget pages */
}

#sidebar .widget-categories {
    /* CSS riêng cho widget categories */
}

#sidebar .widget-archives {
    /* CSS riêng cho widget archives */
}

#sidebar .widget-title {
    background: #f5f5f5;
    border-color: #ebebeb;
    height: 40px;
    padding: 5px 10px;
    border-bottom: solid 1px #ebebeb;


    font-size: 14px;
    font-weight: 500;
    line-height: 28px;

    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: left;
    height: 30px;
    padding: 0 10px;
    color: #1b1b1b;
}

#sidebar .widget-list {
    /* CSS cho danh sách trong widget (ul) */
}

#sidebar .widget-list li {
    background: #fff;
    border-color: #f5f5f5;
    padding: 0 5px 0 10px;
    border-bottom: solid 1px #f5f5f5;
}

#sidebar .widget-list a {
    width: 86%;
    padding: 10px 0;
    display: inline-block;
}

#sidebar .search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0px;
}

#sidebar .search-field {
    flex: 1;
    border: solid 1px #ebebeb;
    padding: 2px 10px;
    border-radius: 4px;
    background: whitesmoke;
    color: #434343;
    font-size: 14px;
    box-sizing: border-box;
    line-height: 30px;
}

#sidebar .search-field:focus {
    outline: none;
    border-color: #333333;
    background: white;
}

#sidebar .search-button {
    border-radius: 4px;
    background: none;
    background-color: #333333;
    color: white;
    text-align: center;
    line-height: 30px;
    display: block;
    width: 80px;
    padding: 0;
    margin: 0;
}

