/* Improved contrast for dark theme - specifically for agent views */

/* Better contrast for unit listings */
.dark .border-gray-600 {
    border-color: rgba(156, 163, 175, 0.4) !important; /* Lighter border for better visibility */
}

.dark .bg-gray-700 {
    background-color: rgba(55, 65, 81, 0.9) !important; /* Slightly lighter background */
}

.dark .bg-gray-800 {
    background-color: rgba(31, 41, 55, 0.95) !important; /* Adjusted card background */
}

/* Improved text contrast */
.dark .text-gray-400 {
    color: rgba(229, 231, 235, 0.9) !important; /* Brighter secondary text */
}

.dark .text-gray-200 {
    color: rgba(243, 244, 246, 0.9) !important; /* Brighter text */
}

.dark .text-gray-100 {
    color: rgba(249, 250, 251, 0.95) !important; /* Even brighter text */
}

.dark .text-gray-50 {
    color: rgba(249, 250, 251, 1) !important; /* Maximum brightness for important text */
}

/* Improved card styling in dark mode */
.dark .filament-card {
    border-color: rgba(75, 85, 99, 0.5) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.1) !important;
}