/**
 * Custom AI Packages CSS
 */

/* General styling */
.mb-10 {
    margin-bottom: 2.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.p-6 {
    padding: 1.5rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.font-bold {
    font-weight: 700;
}

.mb-4 {
    margin-bottom: 1rem;
}

.text-blue-700 {
    color: #1d4ed8;
}

.border-b {
    border-bottom-width: 1px;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.list-disc {
    list-style-type: disc;
}

.list-inside {
    list-style-position: inside;
}

.font-semibold {
    font-weight: 600;
}

.italic {
    font-style: italic;
}

/* Table styling */
.overflow-x-auto {
    overflow-x: auto;
}

.w-full {
    width: 100%;
}

.border-collapse {
    border-collapse: collapse;
}

.bg-white {
    background-color: #ffffff;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.overflow-hidden {
    overflow: hidden;
}

.p-4 {
    padding: 1rem;
}

.text-left {
    text-align: left;
}

.bg-blue-700 {
    background-color: #1d4ed8;
}

.text-white {
    color: #ffffff;
}

.text-center {
    text-align: center;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.font-normal {
    font-weight: 400;
}

.border-b {
    border-bottom-width: 1px;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.font-medium {
    font-weight: 500;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-green-500 {
    color: #10b981;
}

.text-gray-400 {
    color: #9ca3af;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.text-gray-600 {
    color: #4b5563;
}

.bg-blue-50 {
    background-color: #eff6ff;
}

.text-blue-800 {
    color: #1e40af;
}

.text-red-600 {
    color: #dc2626;
}

.inline-flex {
    display: inline-flex;
}

.items-center {
    align-items: center;
}

.ml-2 {
    margin-left: 0.5rem;
}

.accent-blue-600 {
    accent-color: #2563eb;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.hover\:bg-blue-700:hover {
    background-color: #1d4ed8;
}

.transition {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.bg-blue-600 {
    background-color: #2563eb;
}

/* Grid layout for benefits section */
.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.grid {
    display: grid;
}

.gap-6 {
    gap: 1.5rem;
}

.border {
    border-width: 1px;
}

.flex {
    display: flex;
}

.text-blue-600 {
    color: #2563eb;
}

.mr-2 {
    margin-right: 0.5rem;
}

.text-gray-700 {
    color: #374151;
}

/* Responsive grid for benefits */
@media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Custom widths for specific elements */
.ai-packages-form table th,
.ai-packages-form table td {
    min-width: 120px;
}

.ai-packages-form table th:first-child,
.ai-packages-form table td:first-child {
    min-width: 250px;
    max-width: 400px;
}

/* Additional styles for better mobile experience */
@media (max-width: 768px) {
    .ai-packages-form table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Additional compatibility for WordPress themes */
.entry-content .ai-packages-form {
    margin-bottom: 2rem;
}

.entry-content .ai-packages-form button {
    cursor: pointer;
}
