/* FAST AI License Performance Chart Styles */

.falp-input-with-edit input {
    max-width: 200px;
}

.falp-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.falp-form {
    margin-bottom: 30px;
}

.falp-input-group {
    margin-bottom: 20px;
}

.falp-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.falp-input-with-edit {
    display: flex;
    align-items: center;
    gap: 15px;
    align-content: center;
    flex-direction: column-reverse;
}

.falp-slider {
    flex: 1;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: #e9ecef;
    outline: none;
    border-radius: 4px;
}

.falp-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #1976d2;
    cursor: pointer;
    transition: background 0.15s ease;
}

.falp-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: none;
    border-radius: 50%;
    background: #1976d2;
    cursor: pointer;
    transition: background 0.15s ease;
}

.falp-slider::-webkit-slider-thumb:hover {
    background: #1565c0;
}

.falp-slider::-moz-range-thumb:hover {
    background: #1565c0;
}

.falp-text-input {
    width: 120px;
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
    text-align: right;
}

.falp-checkbox-group {
    margin-bottom: 20px;
}

.falp-checkbox-title {
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
}

.falp-checkbox-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.falp-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    padding: 6px 12px;
    border-radius: 4px;
    background-color: #f8f9fa;
    transition: background-color 0.15s ease;
}

.falp-checkbox-label:hover {
    background-color: #e9ecef;
}

.falp-checkbox {
    margin-right: 8px;
}

.falp-chart-container {
    position: relative;
    height: 400px;
    margin-bottom: 30px;
}

.falp-stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.falp-stat-card {
    padding: 15px;
    border-radius: 6px;
    background-color: #f8f9fa;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.falp-stat-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.falp-stat-value {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1976d2;
}

.falp-stat-subtitle {
    font-size: 15px;
    color: #000000;
    margin-bottom: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .falp-input-with-edit {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .falp-text-input {
        width: 100%;
    }
    
    .falp-checkbox-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .falp-stats-container {
        grid-template-columns: 1fr;
    }
}
