.ts-widget-bookmark-updates {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 0;
    margin: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    
}

.ts-widget-bookmark-updates .widget-title {
    background: #2a2a2a;
    color: #ffffff;
    padding: 12px 16px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid #333;
}

.tbu-widget-pool {
    background: #1a1a1a;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.tbu-container {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #1a1a1a;
}

.tbu-bookmark-item {
    position: relative;
    padding: 12px 15px;
    overflow: hidden;
    border-bottom: 1px solid #333 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.02);
    transition: background-color 0.2s ease;
}

.tbu-bookmark-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

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

.tbu-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(to right, rgba(3, 120, 197, 0), rgba(3, 120, 197, 0.3));
    transition: width 0.4s ease-in-out;
    border-radius: 3px;
    z-index: 1;
    pointer-events: none;
}

.tbu-bookmark-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 2;
}

.tbu-bookmark-link:hover {
    text-decoration: none;
}

.tbu-series-title {
    position: relative;
    z-index: 2;
    color: #ddd;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    margin-right: 10px;
    font-size: 13px;
    font-weight: 500;
}

.tbu-series-meta {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tbu-numbers {
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
}

.tbu-new-chapter {
    background: red;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    padding: 0px 2px;
    border-radius: 8px;
    line-height: 1;
    vertical-align: super;
    margin-left: 2px;
    position: relative;
    top: -2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 12px;
    text-align: center;
}

.tbu-no-item{
    padding:15px;
    text-align:center;
    color:#888;
    font-size:13px;
}
.tbu-loading-inner{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 20px;
}
.tbu-loading-spinner{
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top: 3px solid #3498db;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    animation: tbu-spin 0.6s linear infinite;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tbu-loading{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.05);
    z-index: 10;
    border-radius: 4px;
    backdrop-filter: blur(2px);
}

@keyframes tbu-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .tbu-series-title {
        font-size: 13px;
    }
    
    .tbu-numbers {
        font-size: 11px;
    }
    
    .tbu-bookmark-item {
        padding: 10px 12px;
    }
}