.gpt-extractor-container {
    max-width: 100%;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.input-section, .output-section {
    margin-bottom: 30px;
}

#gpt-html-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: monospace;
    margin-bottom: 10px;
}

button {
    padding: 8px 16px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
}

button:hover {
    background-color: #005177;
}

#copy-btn {
    background-color: #5cb85c;
}

#copy-btn:hover {
    background-color: #449d44;
}

.table-container {
    overflow-x: auto;
    margin-bottom: 15px;
}

#result-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

#result-table th, #result-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
}

#result-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

#result-table td:first-child {
    width: 20%;
    font-weight: bold;
}

#result-table tr:hover {
    background-color: #f1f1f1;
}

.message {
    margin-top: 15px;
}

.message .error {
    color: #d9534f;
}

.message .success {
    color: #5cb85c;
}

pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    margin: 0;
    font-family: monospace;
    background-color: #f9f9f9;
    padding: 8px;
    border-radius: 4px;
}