/* --- DESIGN CLEAN BOOTSTRAP ENHANCEMENT --- */

:root {
    --primary-color: #0d6efd;
    --dark-bg: #1a1d20;
    --black: #000000;
}

body {
    background-color: #f0f2f5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
}

/* Card & Shadow Enhancements */
.card {
    border-radius: 12px !important;
}

.shadow-strong {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

/* Table Card Customization */
.table th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6c757d;
}

.table td {
    padding-top: 15px;
    padding-bottom: 15px;
}

/* Logs Console Style */
#log-content {
    scrollbar-width: thin;
    scrollbar-color: #495057 transparent;
}

#log-content::-webkit-scrollbar {
    width: 5px;
}

#log-content::-webkit-scrollbar-thumb {
    background: #495057;
    border-radius: 10px;
}

/* Modal Scanner Visual */
.modal-content {
    border-radius: 20px !important;
}

#interactive-scanner {
    width: 100% !important;
    height: 100% !important;
}

/* OCR Overlay Customization */
#ocr-overlay {
    backdrop-filter: blur(8px);
    border-radius: 20px;
}

#ocr-status {
    font-family: monospace;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 8px;
}

#interactive-scanner {
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    border-color: #444 !important;
}

/* Animations Log */
#log-content div {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}
