.fbody-voting-wrap {
    border: 1px solid #ccc;
    padding: 12px;
    margin: 15px 0;
    background: #fafafa;
    max-width: 350px;
}

.fbody-voting-wrap select {
    width: 100%;
    padding: 6px;
    margin-bottom: 8px;
    font-size: 14px;
}

.fbody-vote-btn {
    display: inline-block;
    padding: 6px 14px;
    background: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
}
.fbody-vote-btn:hover {
    background: #005a87;
}

.fbody-vote-result {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.fbody-vote-desc {
    margin-top: 6px;
    font-size: 13px;
    color: #666;
}

.fbody-vote-stars {
    color: gold;
    margin-right: 4px;
}


.fbody-vote-group {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Khoảng cách giữa các item */
}

.fbody-vote-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #f9f9f9;
}

.fbody-vote-title {
    font-weight: bold;
    white-space: nowrap;
}

.fbody-vote-select {
	background: #fff;
	color: #36c;
	font-weight: 600;
    padding: 8px 2px;
    font-size: 18px;
	width: 120px;
	border: 1px solid #ccc;
	border-radius: 2px;
}

.fbody-vote-stars {
    color: #ff9800;
    font-weight: bold;
    white-space: nowrap;
}

.fbody-vote-count {
    color: #666;
    white-space: nowrap;
}


.fbody-vote-subtext {
    flex-basis: 100%;
    margin: 0px 0 0;
    font-size: 13px;
    color: #333;
}
.fb-vote-result{
	color: #cd9900;
	font-weight: 400;
    font-size: 15px;
    text-shadow: 0 1px 0 #000;
	
}
	/* TOP BAR SCROLL */
.fbody-top-bar {
    overflow-x: auto;
    white-space: nowrap;
    background: #fff;
    padding: 10px;
}

.fbody-top-scroll {
    display: flex;
    gap: 10px;
}

.fbody-top-title {
    display: inline-block;
    padding: 8px 12px;
    background: #f5f5f5;
    color: #222;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

.fbody-top-title:hover {
    background: #666;
}

.fbody-top-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease;
    background: #fff;
    padding: 0 10px;
    margin-top: 5px;
}

.fbody-top-panel.active {
    max-height: 500px; /* Or large enough */
    padding: 10px;
}

.fbody-top-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.fbody-top-item {
    width: 100px;
    text-align: center;
    cursor: pointer;
}

.fbody-top-item img {
    width: 100%;
    border-radius: 4px;
}

.fbody-top-name {
    font-size: 12px;
    color: #36c;
    margin-top: 4px;
}

.fbody-vote-tabs {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 5px;
    margin-bottom: 15px;
    scrollbar-width: none; /* ẩn scrollbar trên Firefox */
}
.fbody-vote-tabs::-webkit-scrollbar {
    display: none; /* ẩn scrollbar trên Chrome/Safari */
}
.fbody-vote-tab {
    flex-shrink: 0;
    background: #f0f0f0;
    border: 1px solid #ccc;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 4px;
    white-space: nowrap;
    transition: background 0.3s, color 0.3s;
}
.fbody-vote-tab.active {
    background: #fff0f0;
    color: red;
    border-color: red;
}

/* TOP BAR SCROLL */
