/* Custom styles for Klassik Catalog Admin */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.table-responsive {
    overflow-x: auto;
    max-height: 70vh;
}

th {
    position: sticky;
    top: 0;
    background-color: #f8f9fa;
    z-index: 1;
}

.action-buttons {
    white-space: nowrap;
}

.action-buttons button {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

#dataTable tr:hover {
    background-color: rgba(0, 123, 255, 0.1);
    cursor: pointer;
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loading-spinner {
    width: 3rem;
    height: 3rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
