.ga4-table-wrapper {
    max-width: 600px;
    margin: 20px 0;
}

.ga4-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-size: 16px;
}

.ga4-table th {
    padding: 10px;
    border-bottom: 2px solid #000; /* black border for a crisp line */
    font-weight: 600;
    background: #000;              /* 🖤 black background */
    color: #fff;                   /* 🤍 white text */
    letter-spacing: 0.5px;         /* optional: slight spacing for style */
}

.ga4-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.ga4-table td strong {
    font-size: 18px;
}

@media (max-width: 500px) {
    .ga4-table-wrapper {
        max-width: 90%;
    }
    .ga4-table td strong {
        font-size: 16px;
    }
}


.ga4-input-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.ga4-input-row input[type="date"],
.ga4-input-row button {
    padding: 6px 10px;
    font-size: 14px;
}

/* Mobile view: stack inputs & button */
@media (max-width: 600px) {
    /* Inputs stay full width */
    .ga4-input-row input[type="date"] {
        flex: 1 0 100%;
        max-width: 100%;
    }

    /* Button shrinks to content and centers */
    .ga4-input-row button {
        flex: 0 0 auto;
        width: auto;
        margin: 0 auto;
    }
}


#ga4-load-button {
    background-color: #360CF2;  /* 🔵 Default WP blue */
    color: #ffffff;
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#ga4-load-button:hover {
    background-color: #1ABC9C;  /* darker on hover */
}
