/* VulnScan Tools Main Styles */

/* Base styles */
.navbar-brand {
    font-weight: bold;
}

.footer {
    background-color: #343a40;
    color: white;
}

.btn-primary {
    background-color: #667eea;
    border-color: #667eea;
}

.btn-primary:hover {
    background-color: #5a6fd8;
    border-color: #5a6fd8;
}

.text-primary {
    color: #667eea !important;
}

.bg-primary {
    background-color: #667eea !important;
}

/* Hero section styles */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
}

/* Feature cards */
.feature-card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Stats section */
.stats-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

/* Category icons */
.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Search section */
.search-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .category-icon {
        font-size: 2rem;
    }
}

/* Tool list styles */
.tool-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.tool-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tool-rating {
    color: #ffc107;
}

.tool-category {
    background-color: #f8f9fa;
    color: #6c757d;
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #667eea;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 0.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
