.gb-container {
    background: #f2f2f2;
    border-radius: 8px;
    padding: 20px;
    font-family: sans-serif;
    color: #333;
}
.gb-header {
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    color: #5c1718;
}
.gb-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gb-input, .gb-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    background: #fff;
    box-sizing: border-box;
}
.gb-textarea {
    resize: vertical;
    min-height: 80px;
}
.gb-btn {
    align-self: flex-start;
    background: #5c1718;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}
.gb-divider {
    border: 0;
    border-top: 1px solid #5c1718;
    margin: 20px 0;
}
.gb-list-wrapper {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}
.gb-list-wrapper::-webkit-scrollbar {
    width: 6px;
}
.gb-list-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}
.gb-list-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
.gb-list-wrapper::-webkit-scrollbar-thumb:hover {
    background: #999;
}
.gb-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.gb-item {
    display: flex;
    gap: 15px;
}
.gb-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.gb-content {
    flex: 1;
}
.gb-name {
    font-weight: bold;
    color: #5c1718;
    margin-bottom: 2px;
}
.gb-time {
    font-size: 11px;
    color: #666;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.gb-text {
    font-size: 14px;
    line-height: 1.5;
}