/* ═══════════════════════════════════════════════════════════════
   Universal PDF Table Builder – Frontend Styles
   Theme: UMU Red #e30613 · Black · White
═══════════════════════════════════════════════════════════════ */

.uptb-table-wrapper {
    margin: 25px 0;
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.uptb-frontend-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 0.95rem;
}

.uptb-frontend-table thead tr {
    background-color: #e30613;
    color: #ffffff;
    text-align: left;
    border: none;
}

.uptb-frontend-table th,
.uptb-frontend-table td {
    padding: 12px 16px;
    border: 1px solid rgba(227, 6, 19, 0.15);
}

.uptb-frontend-table tbody tr {
    transition: background 0.2s ease;
}

.uptb-frontend-table tbody tr:nth-child(even) {
    background-color: #fff5f5;
}

.uptb-frontend-table tbody tr:hover {
    background-color: rgba(227, 6, 19, 0.05);
}

/* Download Button */
.uptb-download-link {
    display: inline-block;
    background-color: #e30613;
    color: #ffffff !important;
    padding: 8px 18px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #e30613;
    text-align: center;
}

.uptb-download-link:hover {
    background-color: #000;
    border-color: #000;
}

/* Responsive Table */
@media screen and (max-width: 767px) {
    .uptb-table-wrapper {
        display: block !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    .uptb-frontend-table {
        min-width: 600px;
    }
}
