body {
    background: linear-gradient(135deg, #667eea, #764ba2);
    min-height: 100vh;
    padding: 2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.glass-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

.upload-box {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.upload-box:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.upload-btn {
    cursor: pointer;
}

.result-box {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
}

.text-output {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    min-height: 200px;
    max-height: 300px;
    overflow-y: auto;
}

#arabic {
    direction: rtl;
    text-align: right;
}

.progress {
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
}