/* Tiêu chuẩn hiển thị cho các thẻ Widget cơ bản (Classic Widgets) */
.widget ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.widget ul li {
    padding: 12px 0;
    border-bottom: 1px dashed #e5e7eb;
    color: #4b5563;
    font-size: 15.5px;
    display: flex;
    align-items: flex-start;
}
.widget ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.widget ul li a {
    color: #374151;
    text-decoration: none;
    transition: color 0.2s ease;
    flex: 1;
}
.widget ul li a:hover {
    color: #dc2626; /* Đỏ chủ đạo */
}

/* Thẻ Tag Cloud */
.widget_tag_cloud .tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.widget_tag_cloud .tagcloud a {
    font-size: 13.5px !important;
    background: #f9fafb;
    color: #4b5563;
    padding: 6px 14px;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
}
.widget_tag_cloud .tagcloud a:hover {
    background: #fee2e2;
    color: #dc2626;
    border-color: #fecaca;
}

/* Nút Tìm kiếm Sidebar */
.widget_search form {
    display: flex;
    align-items: center;
}
.widget_search input[type="text"], .widget_search input[type="search"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px 0 0 6px;
    outline: none;
    font-size: 14px;
    color: #374151;
}
.widget_search input[type="text"]:focus, .widget_search input[type="search"]:focus {
    border-color: #dc2626;
    box-shadow: inset 0 0 0 1px #dc2626;
}
.widget_search input[type="submit"], .widget_search button[type="submit"] {
    padding: 10px 18px;
    background: #dc2626;
    color: #fff;
    border: none;
    border-radius: 0 6px 6px 0;
    font-weight: bold;
    cursor: pointer;
    font-size: 14.5px;
    transition: background 0.2s;
}
.widget_search input[type="submit"]:hover, .widget_search button[type="submit"]:hover {
    background: #b91c1c;
}

/* Lịch */
#wp-calendar {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
}
#wp-calendar caption {
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
    font-size: 15px;
}
#wp-calendar th {
    background: #fef2f2;
    padding: 8px;
    font-size: 13px;
    color: #991b1b;
}
#wp-calendar td {
    padding: 8px;
    border: 1px solid #f3f4f6;
    font-size: 14px;
    color: #4b5563;
}
#wp-calendar td a {
    font-weight: bold;
    color: #dc2626;
}
/* Ảnh trong sidebar */
.widget img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}
