.codeneat-bg-wrap {
    max-width: 600px;
    margin: 1rem auto;
    font-family: Arial, sans-serif;
}

.upload-area {
    border: 2px dashed #1e7a5a;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    margin-bottom: 1rem;
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.upload-area.dragover {
    background-color: #e6f4ea;
}

.queue-item {
    background: #f0f8f5;
    border: 1px solid #1e7a5a;
    padding: 0.5rem;
    margin-bottom: 0.3rem;
    border-radius: 6px;
}

.settings {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.settings label {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
}

#cn-results {
    margin-top: 1rem;
}

.result-item {
    margin-bottom: 0.5rem;
}

.result-item.error {
    color: red;
}

.button {
    background-color: #1e7a5a;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
}

.button.button-primary {
    background-color: #145a3a;
}

.button:disabled {
    background-color: #999;
    cursor: not-allowed;
}
