/* Custom styles for AI Skills landing page */

body {
    background-color: #0f172a;
    color: #f1f5f9;
}

/* Table styling */
table {
    border-collapse: separate;
    border-spacing: 0;
}

th, td {
    padding: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    table {
        font-size: 0.875rem;
    }
    
    th, td {
        padding: 0.75rem;
    }
}

/* Custom hover effects */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #10b981;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #059669;
}

/* Author section fix */
.author-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .author-content {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .author-content .author-image {
        margin-right: 1.5rem;
        margin-bottom: 0;
    }
    
    .author-content .author-text {
        text-align: left;
    }
}

/* Form styling */
.email-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .email-form {
        flex-direction: row;
    }
}