body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; background-color: #f4f7f9; color: #333; margin: 0; padding: 20px; }
.container { max-width: 900px; margin: 0 auto; background-color: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
h1, h2 { color: #2c3e50; border-bottom: 2px solid #e0e0e0; padding-bottom: 10px; }
textarea { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 1rem; box-sizing: border-box; }
button { display: block; width: 100%; padding: 12px; margin: 15px 0; background-color: #3498db; color: white; border: none; border-radius: 4px; font-size: 1.1rem; cursor: pointer; transition: background-color 0.3s; }
button:hover { background-color: #2980b9; }
button:disabled { background-color: #bdc3c7; cursor: not-allowed; }
#log-container {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 15px;
    border-radius: 4px;
    height: 200px;         /* Wichtig für die Scrollleiste */
    overflow-y: auto;      /* Wichtig für die Scrollleiste */
    font-family: "Courier New", Courier, monospace;
    font-size: 0.9rem;
}
#log-list { list-style: none; padding: 0; margin: 0; }
#results-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 20px; }
.result-box { background-color: #ecf0f1; padding: 15px; border-radius: 4px; }
.result-box h3 { margin-top: 0; }
.result-box h3 span {
    color: #7f8c8d; /* Ein neutrales Grau */
    font-weight: normal;
    font-size: 0.9em;
}
.result-box ul { list-style: none; padding: 0; margin: 0; }
.result-box li { padding: 5px 0; border-bottom: 1px solid #ddd; }
.result-box li a { color: #2980b9; text-decoration: none; }
.result-box li a:hover { text-decoration: underline; }
.status-found { color: #27ae60; }
.status-not_found { color: #c0392b; }
.status-error { color: #f39c12; }
.status-redirect { color: #8e44ad; } 

#progress-section {
    margin: 20px 0;
}
#progress-text {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #555;
}
.progress-container {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 4px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}
#progress-bar {
    width: 0%; /* Startet bei 0% */
    height: 20px;
    background-color: #3498db;
    border-radius: 4px;
    text-align: center;
    line-height: 20px;
    color: white;
    transition: width 0.4s ease; /* Sanfter Übergang */
}