.fulfillment-panel .progress-container {
    position: relative;
    padding-bottom: 10px;
}

.fulfillment-panel .progress-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.fulfillment-panel .progress-track {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    height: 8px;
    overflow: hidden;
}

.fulfillment-panel .progress-bar {
    background: linear-gradient(90deg, #198754, #28a745);
    height: 100%;
    border-radius: 50px;
    transition: width 0.5s ease-in-out;
}

.obligation-header, .obligation-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.obligation-header {
    font-weight: bold;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.obligation-item:last-child {
    border-bottom: none;
}

.obligation-task {
    flex: 3; /* Takes up more space */
}

.obligation-status {
    flex: 1;
    text-align: center;
}

.obligation-action {
    flex: 1;
    text-align: right;
}

.obligation-item .badge {
    min-width: 80px; /* Ensures badges have a consistent width */
}