/* Custom styles for the Japanese Auction Sheet Translator */

body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6; /* Light gray background */
    color: #374151; /* Dark gray text */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.light-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

#drop-zone {
    border: 2px dashed #d1d5db;
    transition: all 0.3s ease;
}

#drop-zone.dragover {
    border-color: #3b82f6;
    background-color: #eff6ff;
}

.loader {
    border: 4px solid #e5e7eb;
    border-top: 4px solid #3b82f6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

.small-loader {
    width: 24px;
    height: 24px;
    border-width: 3px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Prose styles for Gemini features */
.prose h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.prose h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.prose ul {
    list-style-type: disc;
    list-style-position: inside;
    padding-left: 0.5rem;
}

.prose li {
    margin-bottom: 0.25rem;
}

.prose p {
     margin-bottom: 0.5rem;
}

.prose strong {
    color: #111827;
}

/* Status indicator styles */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
}

/* Progress bar enhancements */
#progress-container {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out 0.5s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive improvements */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .light-card {
        padding: 1rem;
    }

    #drop-zone {
        padding: 2rem;
    }
}