/* globalstatuses.css - Custom unified node status styles */

.status-badge-cell {
    width: 100%;
    text-align: center;
    padding: 6px 0;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.nodestatus_todo {
    background: linear-gradient(90deg, #00bcd4, #4dd0e1);
    color: #ffffff;
}

.nodestatus_inprogress {
    background: linear-gradient(90deg, #1e88e5, #42a5f5);
    color: #ffffff;
}

.nodestatus_completed {
    background: linear-gradient(90deg, #00c853, #00e676);
    color: #ffffff;
}

.nodestatus_onhold {
    background-color: #ffc107;
    color: #000000;
}

.nodestatus_cancelled {
    background-color: #343a40;
    color: #ffffff;
}

.nodestatus_pending {
    background-color: #6c757d;
    color: #ffffff;
}

.nodestatus_resolved {
    background-color: #17a2b8;
    color: #ffffff;
}

.nodestatus_active {
    background-color: #28a745;
    color: #ffffff;
}

.nodestatus_answered {
    background-color: #17a2b8;
    color: #212529;
}

.nodestatus_requested {
    background-color: #17a2b8;
    color: #ffffff;
}

.nodestatus_notrequested {
    background-color: #6c757d;
    color: #ffffff;
}

.nodestatus_nottested {
    background-color: #6c757d;
    color: #ffffff;
}

.nodestatus_intesting {
    background-color: #17a2b8;
    color: #ffffff;
}

.nodestatus_passed {
    background-color: #28a745;
    color: #ffffff;
}

.nodestatus_failed {
    background-color: #dc3545;
    color: #ffffff;
}

.nodestatus_deploying {
    background: linear-gradient(90deg, #1e88e5, #42a5f5);
    color: #ffffff;
}

.nodestatus_deployed {
    background-color: #28a745;
    color: #ffffff;
}
.nodestatus_planning {
    background: linear-gradient(90deg, #f9a825, #ffeb3b);
    color: #212121;

  }
  .nodestatus_released {
    background: linear-gradient(90deg, #43a047, #66bb6a);
    color: white;

  }


  .nodestatus_dev {
    background: linear-gradient(90deg, #1976d2, #64b5f6); /* strong blue to lighter blue */
    color: #ffffff;
}

.nodestatus_beta {
    background: linear-gradient(90deg, #8e24aa, #ba68c8); /* deep purple to lavender */
    color: #ffffff;
}