/* Kipapp Auto-Logger Custom Styles */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #f8fafc;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Dropzone Hover Effects */
.dropzone {
    border: 2px dashed #cbd5e1;
    transition: all 0.2s ease-in-out;
}
.dropzone.dragover {
    border-color: #3b82f6;
    background-color: #eff6ff;
    transform: scale(1.01);
}

/* Autocomplete Suggestion Dropdown */
.autocomplete-items {
    max-height: 220px;
    overflow-y: auto;
    z-index: 50;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.2s ease-out forwards;
}

/* Table Hover */
.table-row-hover:hover {
    background-color: #f8fafc;
}

/* Toast Container */
#toast-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    animation: fadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
