/* Dashboard styles */
.shield360-dashboard-container {
    font-family: 'Arial', sans-serif;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* General styles */
.shield360-dashboard-container .bg-gray-900 {
    background-color: #111827;
}

.shield360-dashboard-container .bg-gray-800 {
    background-color: #1F2937;
}

.shield360-dashboard-container .bg-gray-700 {
    background-color: #374151;
}

.shield360-dashboard-container .border-green-400 {
    border-color: #00FFAA;
}


.shield360-dashboard-container .text-cyan-400 {
    color: #00D6FF;
}

.shield360-dashboard-container .text-red-400 {
    color: #F87171;
}

.shield360-dashboard-container .text-white {
    color: #FFFFFF;
}

/* Layout */
.shield360-dashboard-container .flex {
    display: flex;
}

.shield360-dashboard-container .flex-col {
    flex-direction: column;
}

.shield360-dashboard-container .items-center {
    align-items: center;
}

.shield360-dashboard-container .justify-between {
    justify-content: space-between;
}

.shield360-dashboard-container .justify-end {
    justify-content: flex-end;
}

.shield360-dashboard-container .p-4 {
    padding: 1rem;
}

.shield360-dashboard-container .mb-4 {
    margin-bottom: 1rem;
}

.shield360-dashboard-container .mb-2 {
    margin-bottom: 0.5rem;
}

.shield360-dashboard-container .mt-6 {
    margin-top: 1.5rem;
}

.shield360-dashboard-container .mr-2 {
    margin-right: 0.5rem;
}

.shield360-dashboard-container .ml-2 {
    margin-left: 0.5rem;
}

.shield360-dashboard-container .space-x-2 > * + * {
    margin-left: 0.5rem;
}

/* Grid */
.shield360-dashboard-container .grid {
    display: grid;
}

.shield360-dashboard-container .gap-4 {
    gap: 1rem;
}

.shield360-dashboard-container .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.shield360-dashboard-container .grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .shield360-dashboard-container .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .shield360-dashboard-container .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    
}

.shield360-dashboard-container .col-span-2 {
    grid-column: span 2 / span 2;
}

/* Components */
.shield360-dashboard-container .rounded-lg {
    border-radius: 0.5rem;
}

.shield360-dashboard-container .rounded-md {
    border-radius: 0.375rem;
}

.shield360-dashboard-container .rounded-full {
    border-radius: 9999px;
}

.shield360-dashboard-container .rounded {
    border-radius: 0.25rem;
}

.shield360-dashboard-container .border {
    border-width: 1px;
    border-style: solid;
}

.shield360-dashboard-container .border-b {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.shield360-dashboard-container .shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Typography */
.shield360-dashboard-container .text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.shield360-dashboard-container .font-bold {
    font-weight: 700;
}

.shield360-dashboard-container .font-semibold {
    font-weight: 600;
}

.shield360-dashboard-container .font-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* Forms */
.shield360-dashboard-container select,
.shield360-dashboard-container input[type="checkbox"] {
    padding: 0.25rem 0.5rem;
    background-color: #111827;
    border: 1px solid #00FFAA;
    color: #00FFAA;
}

.shield360-dashboard-container input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 1rem;
    height: 1rem;
    border-radius: 0.25rem;
    margin-right: 0.5rem;
    position: relative;
    cursor: pointer;
}

.shield360-dashboard-container input[type="checkbox"]:checked {
    background-color: #00FFAA;
}

.shield360-dashboard-container input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #111827;
    font-size: 0.75rem;
}

/* Table */
.shield360-dashboard-container .min-w-full {
    min-width: 100%;
}

.shield360-dashboard-container .overflow-x-auto {
    overflow-x: auto;
}

.shield360-dashboard-container table {
    border-collapse: collapse;
    width: 100%;
}

.shield360-dashboard-container th {
    text-align: left;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #00FFAA;
}

.shield360-dashboard-container td {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #374151;
}

.shield360-dashboard-container tr:hover {
    background-color: #1F2937;
}

/* Chart containers */
.shield360-dashboard-container .w-full {
    width: 100%;
}

.shield360-dashboard-container .h-80 {
    height: 20rem;
}

/* AI Score bars */
.shield360-dashboard-container .w-16 {
    width: 4rem;
}

.shield360-dashboard-container .h-2\.5 {
    height: 0.625rem;
}

.shield360-dashboard-container .bg-cyan-400 {
    background-color: #00D6FF;
}

.shield360-dashboard-container .bg-green-400 {
    background-color: #00FFAA;
}

/* Help section */
.shield360-dashboard-container .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.shield360-dashboard-container .py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Light theme override */
.shield360-dashboard-container[data-theme="light"] .bg-gray-900 {
    background-color: #F3F4F6;
}

.shield360-dashboard-container[data-theme="light"] .bg-gray-800 {
    background-color: #FFFFFF;
}

.shield360-dashboard-container[data-theme="light"] .bg-gray-700 {
    background-color: #F9FAFB;
}

.shield360-dashboard-container[data-theme="light"] .text-white {
    color: #111827;
}

.shield360-dashboard-container[data-theme="light"] table {
    background-color: #FFFFFF;
}