/* Performance Analysis Styles */
#performance-analysis {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.performance-container {
    background-color: rgba(51, 79, 78, 0.1);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.performance-container h2 {
    text-align: center;
    margin-bottom: 10px;
}

.performance-container p {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.analysis-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.analysis-controls input {
    flex: 1;
    max-width: 400px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: transparent;
    color: aqua;
}

.analyze-btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.analyze-btn:hover {
    background-color: #0056b3;
}

.results-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.metric-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #007bff;
}

.metric-card h3 {
    margin-bottom: 10px;
    color: #007bff;
}

.metric-card div {
    font-size: 24px;
    font-weight: bold;
    color: aqua;
}

.loading {
    text-align: center;
    font-size: 18px;
    color: #007bff;
    grid-column: 1 / -1;
}

.detailed-results {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #28a745;
}

.detailed-results h3 {
    margin-bottom: 15px;
    color: #28a745;
}

.recommendations ul {
    list-style-type: disc;
    padding-left: 20px;
}

.recommendations li {
    margin-bottom: 8px;
    color: #ddd;
}