.image-to-text-converter {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.image-to-text-converter h2 {
    color: #23282d;
    margin-bottom: 10px;
}

.image-to-text-converter p {
    color: #666;
    margin-bottom: 20px;
}

.upload-area {
    border: 2px dashed #ccd0d4;
    border-radius: 4px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background-color: #f9f9f9;
}

.upload-area:hover, .upload-area.dragover {
    border-color: #007cba;
    background-color: #f0f6fc;
}

.upload-placeholder .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: #ccd0d4;
}

.upload-area:hover .dashicons, .upload-area.dragover .dashicons {
    color: #007cba;
}

.supported-formats {
    font-size: 12px;
    margin-top: 10px;
    color: #999;
}

.processing {
    text-align: center;
    margin: 30px 0;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background-color: #f1f1f1;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress {
    height: 100%;
    background-color: #007cba;
    width: 0%;
    transition: width 0.3s;
}

.status {
    color: #666;
}

.results {
    margin-top: 20px;
}

.results h3 {
    margin-bottom: 10px;
}

#convertedText {
    width: 100%;
    min-height: 200px;
    padding: 10px;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    resize: vertical;
    font-family: monospace;
}

.action-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.button {
    padding: 10px 15px;
    background-color: #007cba;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #006ba1;
}

.error {
    background-color: #ffebe8;
    border: 1px solid #c00;
    border-radius: 4px;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
}

.error p {
    color: #c00;
    margin: 0 0 15px 0;
}

@media (max-width: 600px) {
    .action-buttons {
        flex-direction: column;
    }
    
    .button {
        width: 100%;
    }
}