
.ng-card{
    width:90%;
    margin:20px auto;
    padding:20px;
    background:white;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
    font-family:system-ui;
}

.ng-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
}

.ng-title{
    font-size:20px;
    font-weight:600;
}

.ng-status-circle{
    width:32px;
    height:32px;
    border-radius:50%;
    border:3px solid #9ca3af;
}

.ng-status-circle[data-status=open]{
    background:#22c55e;
    border-color:#16a34a;
}
.ng-status-circle[data-status=closed]{
    background:#ef4444;
    border-color:#dc2626;
}
.ng-status-circle[data-status=unknown]{
    background:#6b7280;
    border-color:#4b5563;
}
.ng-status-circle[data-status=tie]{
    background:#eab308;
    border-color:#ca8a04;
}

.ng-status-bar{
    padding:12px;
    border-radius:12px;
    text-align:center;
    font-weight:700;
    color:white;
    margin-bottom:12px;
}

.ng-status-bar[data-user=open]{
    background:linear-gradient(90deg,#16a34a,#22c55e);
}
.ng-status-bar[data-user=closed]{
    background:linear-gradient(90deg,#dc2626,#ef4444);
}
.ng-status-bar[data-user=""]{
    background:linear-gradient(90deg,#4b5563,#6b7280);
}

.ng-buttons{
    display:flex;
    gap:12px;
}

.ng-btn{
    flex:1;
    background:#e5e7eb;
    border:none;
    border-radius:12px;
    padding:12px;
    font-weight:600;
    font-size:15px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:6px;
    position:relative;
}

.ng-btn.selected.open-btn{
    background:linear-gradient(90deg,#16a34a,#22c55e);
    color:white;
}
.ng-btn.selected.closed-btn{
    background:linear-gradient(90deg,#dc2626,#ef4444);
    color:white;
}

.ng-badge{
    position:absolute;
    top:-14px;
    left:8px;
    background:#facc15;
    padding:4px 10px;
    border-radius:8px;
    font-size:12px;
    font-weight:800;
    display:none;
}

.ng-btn.winner .ng-badge{
    display:block;
}
