.noindex-checker-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 5px;
}

#noindex-checker-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

#url-input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#noindex-checker-form button {
    padding: 8px 16px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#noindex-checker-form button:hover {
    background: #005177;
}

#results-container {
    background: white;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

#check-results ul {
    list-style: none;
    padding: 0;
}

#check-results li {
    margin: 10px 0;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

#check-results li:last-child {
    border-bottom: none;
}  