/* License Grid Page Styles */

/* License Status Badges */
.badge-license-active {
    background-color: #28a745;
    color: white;
}

.badge-license-expired {
    background-color: #dc3545;
    color: white;
}

.badge-license-expiring {
    background-color: #ffc107;
    color: #212529;
}

.badge-license-suspended {
    background-color: #6c757d;
    color: white;
}

.badge-license-pending {
    background-color: #17a2b8;
    color: white;
}

/* License Type Badges */
.badge-license-basic {
    background-color: #6c757d;
    color: white;
}

.badge-license-premium {
    background-color: #007bff;
    color: white;
}

.badge-license-enterprise {
    background-color: #28a745;
    color: white;
}

.badge-license-trial {
    background-color: #ffc107;
    color: #212529;
}

/* Statistics Cards Hover Effects */
.license-stats .card {
    transition: transform 0.2s ease-in-out;
}

.license-stats .card:hover {
    transform: translateY(-2px);
}

/* Custom License Grid Styles */
.license-grid .table th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
}

.license-grid .license-key {
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    background-color: #f8f9fa;
    padding: 2px 6px;
    border-radius: 3px;
}

.license-grid .expiry-warning {
    color: #dc3545;
    font-weight: 600;
}

.license-grid .expiry-soon {
    color: #ffc107;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .license-grid .table-responsive {
        font-size: 0.875rem;
    }
    
    .license-grid .license-key {
        font-size: 0.8em;
    }
}
