/* ====== BẢNG HOẠT ĐỘNG NGÀY BÊN PHẢI ====== */

#ht-daily-activity {
    position: fixed;
    right: 0;
    top: 140px;
    width: 230px;
    background: rgba(28, 24, 20, 0.96);
    border-left: 2px solid #e3bb4a;
    border-top: 2px solid #e3bb4a;
    border-bottom: 2px solid #e3bb4a;
    z-index: 9999;
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: #eee;
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

#ht-daily-activity .htda-header {
    background: linear-gradient(to right, #a07218, #e3bb4a);
    color: #1b1307;
    font-weight: bold;
    text-align: center;
    padding: 6px 8px;
    font-size: 13px;
    letter-spacing: 1px;
}

.htda-tabs {
    display: flex;
    background: #312512;
    border-bottom: 1px solid #8c6c24;
}

.htda-tab {
    flex: 1;
    padding: 4px 0;
    border: none;
    background: transparent;
    color: #e0d6b0;
    font-size: 11px;
    cursor: pointer;
    border-right: 1px solid #8c6c24;
    transition: all 0.15s ease;
}

.htda-tab:last-child {
    border-right: none;
}

.htda-tab:hover {
    background: #56421a;
}

.htda-tab.active {
    background: #e3bb4a;
    color: #1b1307;
    font-weight: bold;
}

#htda-content {
    max-height: 260px;
    overflow-y: auto;
    padding: 6px 8px;
    background: url('/assets/images/bg-panel.png') repeat-y #22160c;
}

/* Ẩn thanh cuộn xấu */
#htda-content::-webkit-scrollbar {
    width: 6px;
}
#htda-content::-webkit-scrollbar-track {
    background: #201509;
}
#htda-content::-webkit-scrollbar-thumb {
    background: #7a5b1a;
}

/* Item */
.htda-item {
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
    border-bottom: 1px dashed rgba(190, 158, 90, 0.3);
    align-items: center;
}

.htda-item:last-child {
    border-bottom: none;
}

.htda-item-name {
    color: #f4e3b5;
    font-size: 12px;
}

.htda-item-name.hot {
    color: #ff6666;
    font-weight: bold;
}

.htda-item-time {
    color: #f0c95b;
    margin-left: 8px;
    white-space: nowrap;
}

.htda-empty {
    text-align: center;
    color: #bbb;
    padding: 12px 0 6px 0;
    font-size: 12px;
}

/* Responsive chút cho màn nhỏ */
@media (max-width: 1024px) {
    #ht-daily-activity {
        top: 100px;
        width: 210px;
    }
}
