/* Input Controls */
.elkawa-stepper-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.elkawa-stepper-label {
    font-weight: 600;
    color: #333;
    flex: 1;
}

.elkawa-stepper-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.elkawa-percent-input {
    width: 60px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid #ddd;
    border-radius: 5px;
    padding: 5px;
    color: #333;
    -moz-appearance: textfield;
}

.elkawa-percent-input::-webkit-outer-spin-button,
.elkawa-percent-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.elkawa-percent-input:focus {
    border-color: #4D8B55;
    outline: none;
}

.elkawa-percent-symbol {
    font-weight: 700;
    color: #777;
    margin-left: -5px;
}

/* Total Bar */
.elkawa-total-container {
    background: #f1f8f3;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid #cce5d3;
}

.elkawa-total-label {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.elkawa-total-value {
    font-size: 24px;
    font-weight: 700;
    color: #4D8B55;
}

.elkawa-total-value.error {
    color: #d32f2f;
}

.elkawa-total-bar-bg {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    margin-top: 10px;
    overflow: hidden;
}

.elkawa-total-bar-fill {
    height: 100%;
    background: #4D8B55;
    width: 0%;
    transition: width 0.3s ease;
}

.elkawa-total-bar-fill.full {
    background: #4D8B55;
}

.elkawa-total-bar-fill.over {
    background: #d32f2f;
}
