/* Data Table Explorer - Bootstrap Enhancements */

/* Modern Card Styling */
.pc-content .card {
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 0.75rem;
    transition: box-shadow 0.3s ease;
}

.pc-content .card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Enhanced Table Styling */
#explorer-table {
    border-collapse: separate !important;
    border-spacing: 0 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    overflow: hidden;
}

#explorer-table thead th {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-weight: 600;
    color: #374151;
    border-bottom: 2px solid #d1d5db;
    padding: 14px 16px;
}

#explorer-table tbody tr {
    transition: background-color 0.2s ease;
}

#explorer-table tbody tr:hover {
    background-color: #f9fafb;
}

#explorer-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

#explorer-table td {
    padding: 12px 16px;
    border-color: #e5e7eb;
}

/* Dropdown Hover Effect */
.hover-bg-light:hover {
    background-color: #f8f9fa !important;
    cursor: pointer;
}

/* Button Group Enhancements */
.btn-group .btn {
    transition: all 0.2s ease;
}

.btn-group .btn:hover {
    transform: translateY(-1px);
}

/* Filter Buttons */
.btn-outline-primary,
.btn-outline-warning,
.btn-outline-success,
.btn-outline-secondary {
    border-width: 1.5px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.2);
}

.btn-outline-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.2);
}

.btn-outline-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(34, 197, 94, 0.2);
}

/* Alert Styling */
.alert-info {
    background-color: #eff6ff;
    border-color: #bfdbfe;
    color: #1e40af;
}

/* Dropdown Panel */
.dropdown-panel {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Form Controls */
.form-control:focus,
.form-check-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}