
/* Layout */
.layout-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.main-left {
    width: calc(100% - 260px);
    padding: 20px;
}

.favorites-right {
    width: 250px;
    background: #111;
    padding: 15px;
    border-left: 2px solid #222;
    min-height: 100vh;
}

.favorites-right h3 {
    color: #ff0066;
    margin-bottom: 12px;
}

.favorite-item {
    display: flex;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 6px;
    margin-bottom: 10px;
    color: #fff;
    text-decoration: none;
    gap: 8px;
}

.favorite-thumb {
    width: 50px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

.badge-online {
    background: #ff0033;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 11px;
}

.badge-offline {
    background: #555;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 11px;
}
