/* HOW Campers Table - Frontend CSS */

.howcampers-table-container {
    width: 100%;
    margin: 20px 0;
    overflow-x: auto;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.howcampers-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    margin: 0;
}

.howcampers-table tr {
    border-bottom: 1px solid #ddd;
}

.howcampers-table tr:last-child {
    border-bottom: none;
}

.howcampers-table tr:hover {
    background: #f9f9f9;
}

.howcampers-table td {
    padding: 12px 15px;
    text-align: left;
    vertical-align: middle;
}

/* Header styling (first row) */
.howcampers-table tr:first-child td {
    background: #f0f0f0;
    font-weight: bold;
    border-bottom: 2px solid #333;
    color: #333;
}

/* Alternating row colors for better readability */
.howcampers-table tr:nth-child(even) {
    background: #fafafa;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .howcampers-table {
        font-size: 14px;
    }

    .howcampers-table td {
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .howcampers-table {
        font-size: 12px;
    }

    .howcampers-table td {
        padding: 6px 8px;
    }

    .howcampers-table-container {
        margin: 10px 0;
    }
}

/* Optional: Style for specific table cells if needed */
.howcampers-table strong {
    font-weight: 600;
}

.howcampers-table em {
    font-style: italic;
}
