   
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            padding-left: 20px;
            border-bottom: 1px solid #333;
            margin-bottom: 20px;
            margin-top: 5px;
            background: #000;
        }
        
        .profile {
            display: flex;
            align-items: center;
        }
        
        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #70b43a;
            margin-right: 15px;
        }
        
        .broadcaster-info h2 {
            font-size: 18px;
            color: #ffffff;
        }
        
        .online-count {
            font-size: 14px;
            color: #ccc;
        }
        
        .main-content {
            display: flex;
            gap: 20px;
        }
        
        .left-section {
            flex: 7;
            display: flex;
            flex-direction: column;
        }
        
        .video-container {
            background-color: #222;
            border-radius: 8px;
            height: 400px;
            position: relative;
            overflow: hidden;
        }
        
        .video-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #333;
            color: #ffffff;
        }
        
        .chat-container {
            flex: 1;
            background-color: #222;
            border-radius: 8px;
            margin-top: 20px;
            display: flex;
            flex-direction: column;
        }
        
        .chat-messages {
            flex: 1;
            padding: 15px;
            overflow-y: auto;
            height: 300px;
        }
        
        .message {
            margin-bottom: 15px;
            display: flex;
        }
        
        .message.self {
            flex-direction: row-reverse;
        }
        
        .message-avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #70b43a;
            margin-right: 10px;
        }
        
        .message.self .message-avatar {
            margin-right: 0;
            margin-left: 10px;
        }
        
        .message-content {
            background-color: #333;
            padding: 10px;
            border-radius: 5px;
            max-width: 70%;
        }
        
        .message.self .message-content {
            background-color: #70b43a;
        }
        
        .message-username {
            font-weight: bold;
            margin-bottom: 5px;
            color: #70b43a;
        }
        
        .message.self .message-username {
            color: #ffffff;
        }
        
        .chat-input-container {
            display: flex;
            padding: 10px;
            border-top: 1px solid #333;
        }
        
        .chat-input {
            flex: 1;
            padding: 10px;
            border: 1px solid #444;
            border-radius: 4px;
            background-color: #333;
            color: #fff;
            outline: none;
        }
        
        .send-button {
            padding: 10px 20px;
            background-color: #70b43a;
            color: white;
            border: none;
            border-radius: 4px;
            margin-left: 10px;
            cursor: pointer;
        }
        
        .send-button:hover {
            background-color: #ff4b50;
        }
        
        .right-section {
            flex: 3;
            display: flex;
            flex-direction: column;
        }
        
        .gift-container {
            background-color: #222;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 20px;
        }
        
        .gift-title {
            font-size: 16px;
            margin-bottom: 10px;
        }
        
        .gift-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }
        
        .gift-item {
            background-color: #333;
            border-radius: 4px;
            padding: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        .gift-item:hover {
            background-color: #444;
        }
        
        .gift-icon {
            width: 50px;
            height: 50px;
            border-radius: 4px;
            margin-bottom: 5px;
        }
        
        .gift-icon img{
        	width: 100%;
        }
     
        
        .gift-price {
            font-size: 12px;
            color: #ccc;
        }
        
        .user-container {
            background-color: #222;
            border-radius: 8px;
            padding: 15px;
        }
        
        .user-title {
            font-size: 16px;
            margin-bottom: 15px;
        }
        
        .user-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .user-item {
            background-color: #333;
            border-radius: 4px;
            padding: 8px 12px;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        .user-item:hover {
            background-color: #444;
        }
        
        .user-avatar-small {
            width: 30px;
            height: 30px;
             border-radius: 50%;
            background-color: #70b43a;
            margin-right: 20px;
        }
        
        .user-avatar-small img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
        }
        
        .user-name {
            font-size: 14px;
            color: #fff;
        }
        
        .user-item.operator .user-avatar-small {
            background-color: #ffcc00;
        }
        
        .user-item.vip .user-avatar-small {
            background-color: #ff9900;
        }