body {
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
}

.title {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

.input-textarea, pre {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    background-color: #fff;
    overflow: auto;
}

.input-textarea {
    height: 200px;
}

.multiline-placeholder {
    color: #999;
}

.parse-button:hover {
    background-color: #45a049;
}

.parse-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.results {
    margin-top: 30px;
}

.result-section {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    border-radius: 5px;
    border: 1px solid #ddd;
    color: #333;
    margin-bottom: 25px;
    margin-top: 0;
    padding-bottom: 10px;
    padding: 15px;
}

.links-list {
    list-style-type: none;
    padding: 0;
}

.links-list li {
    padding: 5px;
    border-bottom: 1px solid #f0f0f0;
}

.links-list li:last-child {
    border-bottom: none;
}

.description {
    color: #999;
    font-style: italic;
}

.loading {
    text-align: center;
    color: #666;
    font-style: italic;
}

.error {
    color: #d32f2f;
    background-color: #ffebee;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}
