/* ios-table.css - estilos simples */

.ios-table-container {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #fff;
}

.ios-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.ios-table thead {
    background: #f5f5f7;
}

.ios-table th, 
.ios-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
}

.ios-table th {
    font-weight: 600;
    color: #007aff;
}

.ios-table tr:hover {
    background: rgba(0,122,255,0.05);
}

@media(max-width: 768px){
    .ios-table th, .ios-table td {
        padding: 10px;
        font-size: 14px;
    }
}
