.arun-box {
    background: #f8fafc;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.arun-status-wrap {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 10px 0 15px;
}

.arun-status-wrap input[type="radio"] {
    display: none;
}

.arun-badge {
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

/* Default styles */
.arun-not-started {
    background: #f1f5f9;
    color: #475569;
}

.arun-in-progress {
    background: #fff7ed;
    color: #c2410c;
}

.arun-done {
    background: #ecfdf5;
    color: #065f46;
}

/* Selected highlight */
.arun-status-wrap input[type="radio"]:checked + .arun-badge {
    border: 2px solid #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
    transform: scale(1.05);
}

.arun-box textarea {
    width: 100%;
    min-height: 110px;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    resize: vertical;
}

.arun-info {
    font-size: 12px;
    color: #64748b;
    margin-top: 6px;
}

/* Admin column badge styles */
.arun-column-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    display: inline-block;
}

.arun-column-not-started {
    background: #94a3b8;
}

.arun-column-in-progress {
    background: #f97316;
}

.arun-column-done {
    background: #22c55e;
}