/* Desktop styles */
.responsive-table th.date-column,
.responsive-table td.date-column { width: 15%; }
.responsive-table th.bot-name-column,
.responsive-table td.bot-name-column { width: 20%; }
.responsive-table th.ip-address-column,
.responsive-table td.ip-address-column { width: 15%; }
.responsive-table th.requested-url-column,
.responsive-table td.requested-url-column { width: 25%; }
.responsive-table th.status-code-column,
.responsive-table td.status-code-column { width: 10%; }
.responsive-table th.hostname-column,
.responsive-table td.hostname-column { width: 15%; }

/* Desktop and Mobile styles */
.responsive-table tr:nth-child(odd) {
    background-color: #f9f9f9; /* Light grey for odd rows */
}

.responsive-table tr:nth-child(even) {
    background-color: #ffffff; /* White for even rows */
}

.responsive-table td.requested-url-column {
    word-break: break-word;
}

/* Mobile styles */
@media screen and (max-width: 600px) {
    .responsive-table th,
    .responsive-table td {
        display: none; /* Hide all cells initially */
    }

    /* Show bot name column in header on mobile */
    .responsive-table th.bot-name-column {
        display: block; /* Display bot name header */
        width: 100%; /* Full width */
        text-align: center; /* Center align the header text */
    }

    /* Show date, bot name, and requested URL data cells with full width on mobile */
    .responsive-table td.date-column,
    .responsive-table td.bot-name-column,
    .responsive-table td.requested-url-column {
        display: block; /* Stack vertically */
        width: 100%; /* Full width for better visibility on mobile */
        text-align: left; /* Align text to the left */
    }

    .responsive-table tr {
        display: block; /* Each row as a block */
        margin-bottom: 10px; /* Space between rows */
    }
    .responsive-table td {
        padding: 8px 10px;
    }

    .responsive-table td.bot-name-column {
        font-weight: 600;
    }
	
    .responsive-table td.requested-url-column {
        font-size: 13px;
        line-height: 1.4;
    }
	
}