/* Training Methods Settings */

.training-methods-settings {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.method-setting-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 16px;
}

.method-header {
    margin-bottom: 12px;
    position: relative;
}

.coming-soon-badge {
    display: inline-block;
    margin-left: 12px;
    padding: 2px 8px;
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.5);
    border-radius: 4px;
    color: #ff4444;
    font-size: 11px;
    font-weight: bold;
    vertical-align: middle;
}

.method-description {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 4px 0 0 0;
    padding-left: 32px;
}

.method-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 12px 0;
    padding-left: 32px;
}

.method-skill-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    cursor: pointer;
    user-select: none;
}

.method-skill-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.method-skill-checkbox span {
    color: rgba(255, 255, 255, 0.9);
}

.method-level-range {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    padding-left: 32px;
}

.method-level-input {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.method-level-input label {
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

.method-milestones {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
    padding-left: 32px;
}

.method-milestone-slider {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.method-milestone-slider label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.method-milestone-slider .milestone-value,
.method-milestone-slider .randomize-value {
    color: #ffd700;
    font-weight: bold;
}

.method-milestone-slider .slider {
    width: 200px;
    height: 6px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.5);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.method-milestone-slider .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffd700;
    cursor: pointer;
    box-shadow: 0 0 4px rgba(255, 215, 0, 0.5);
}

.method-milestone-slider .slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffd700;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 4px rgba(255, 215, 0, 0.5);
}

.method-example {
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 4px;
    font-size: 12px;
}

.method-example strong {
    color: rgba(255, 255, 255, 0.9);
    margin-right: 6px;
}

.method-example code {
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 11px;
}
