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

::-webkit-scrollbar-track {
    background: #1f2937;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

/* Custom styles for status badges */
.bg-yellow-100 {
    background-color: rgba(234, 179, 8, 0.1);
}

.text-yellow-800 {
    color: rgb(146, 64, 14);
}

.bg-green-100 {
    background-color: rgba(34, 197, 94, 0.1);
}

.text-green-800 {
    color: rgb(22, 101, 52);
}

.bg-red-100 {
    background-color: rgba(239, 68, 68, 0.1);
}

.text-red-800 {
    color: rgb(153, 27, 27);
}

/* Table styles */
.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Link hover effects */
.hover-link {
    transition: color 0.2s ease-in-out;
}

.hover-link:hover {
    color: #a5b4fc;
}

/* Card hover effects */
.hover-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.hover-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
} 