#rte-widget {
    max-width: 480px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #f9f9f9;
    font-family: Arial, sans-serif;
}

.rte-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.rte-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

.rte-title-wrap {
    flex: 1;
}

.rte-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 4px;
}

.rte-sub {
    font-size: 13px;
    color: #555;
}

.rte-progress-bar {
    width: 100%;
    background: #e5e5e5;
    border-radius: 8px;
    height: 14px;
    overflow: hidden;
    margin-bottom: 5px;
}

.rte-progress-fill {
    height: 100%;
    width: 0%;
    background: #4ade80;
    transition: width 0.3s ease;
}

.rte-progress-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 12px;
}

.rte-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.rte-btn {
    flex: 1;
    padding: 10px 12px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: bold;
}

.rte-btn:hover {
    opacity: 0.9;
}

.rte-btn-fb {
    background: #1877f2;
    color: #fff;
}

.rte-btn-wa {
    background: #25d366;
    color: #fff;
}

.rte-btn-full {
    width: 100%;
    margin-top: 5px;
}

.rte-btn-claim {
    background: #f59e0b;
    color: #fff;
}

.rte-code-area {
    margin-top: 12px;
    font-size: 16px;
    font-weight: bold;
    color: #111;
}
