/**
 * TableCraft - Modern Gradient Theme
 * Contemporary design with teal-to-cyan gradient headers
 */

/* Base wrapper styles */
.tablecraft-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 1.5rem 0;
    -webkit-overflow-scrolling: touch;
}

/* Modern Gradient Table */
.tablecraft-table.tablecraft-modern-gradient {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.15), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.tablecraft-table.tablecraft-modern-gradient thead {
    background: linear-gradient(135deg, #0d9488 0%, #06b6d4 50%, #0891b2 100%);
    position: relative;
}

.tablecraft-table.tablecraft-modern-gradient thead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #34d399, #22d3ee, #34d399);
}

.tablecraft-table.tablecraft-modern-gradient th {
    color: #ffffff;
    font-weight: 600;
    text-align: left;
    padding: 16px 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.tablecraft-table.tablecraft-modern-gradient td {
    padding: 14px 20px;
    color: #334155;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.tablecraft-table.tablecraft-modern-gradient tbody tr:nth-child(even) {
    background-color: #f0fdfa;
}

.tablecraft-table.tablecraft-modern-gradient tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

.tablecraft-table.tablecraft-modern-gradient tbody tr:hover {
    background: linear-gradient(90deg, #ccfbf1 0%, #cffafe 100%);
    transform: scale(1.002);
}

.tablecraft-table.tablecraft-modern-gradient tbody tr:last-child td {
    border-bottom: none;
}

.tablecraft-table.tablecraft-modern-gradient tbody tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

.tablecraft-table.tablecraft-modern-gradient tbody tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .tablecraft-table.tablecraft-modern-gradient {
        font-size: 0.875rem;
        border-radius: 8px;
    }

    .tablecraft-table.tablecraft-modern-gradient th,
    .tablecraft-table.tablecraft-modern-gradient td {
        padding: 12px 14px;
    }

    .tablecraft-table.tablecraft-modern-gradient tbody tr:last-child td:first-child {
        border-bottom-left-radius: 8px;
    }

    .tablecraft-table.tablecraft-modern-gradient tbody tr:last-child td:last-child {
        border-bottom-right-radius: 8px;
    }
}

@media screen and (max-width: 480px) {
    .tablecraft-table.tablecraft-modern-gradient {
        font-size: 0.8rem;
    }

    .tablecraft-table.tablecraft-modern-gradient th,
    .tablecraft-table.tablecraft-modern-gradient td {
        padding: 10px 12px;
    }
}