#results { 
    /*border: 1px solid #ccc; */
    max-width: 1100px; 
    margin-top: 5px; 
    font-family: Arial, sans-serif;
}
#results .result { 
    padding: 8px; 
    cursor: pointer; 
    border-bottom: 1px solid #eee;
}
#results .result:hover { background: #f9f9f9; }
.name { font-weight: bold; }
.id { font-size: 0.8em; color: #999; margin-left: 8px; }

/* Progressbar */
.progress-container {
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
    height: 8px;
    margin-top: 4px;
}
.progress-bar {
    height: 100%;
    transition: width 0.3s;
}
.progress-green { background: #4caf50; } /* >70% */
.progress-yellow { background: #ff9800; } /* 40–70% */
.progress-red { background: #f44336; } /* <40% */

/* Vorschläge-Kasten */
.suggestions-box {
    margin-top: 12px;
    padding: 8px;
    border: 1px solid #0077cc;
    border-radius: 6px;
    background: #f0f8ff;
}
.suggestion-header {
    font-weight: bold;
    color: #0077cc;
    margin-bottom: 6px;
}
.suggestion {
    padding: 4px 0;
    cursor: pointer;
    color: #0077cc;
    display: flex;
    align-items: center;
}
.suggestion:hover { 
    text-decoration: underline;
}
.suggestion-icon {
    margin-right: 6px;
    color: #0077cc;
    font-weight: bold;
}