

.tmu-ga-widget {
    font-family: Arial, Helvetica, sans-serif;
    max-width: 100%;
    overflow-x: auto;
    padding: 0;
    background: #edf0f1;
    border-radius: 12px;
    border: none;
}

.tmu-ga-header {

    color: #222;
    padding: 18px 24px;
    margin-bottom: 0;
    border-radius: 12px 12px 0 0;
}

.tmu-ga-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.tmu-ga-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: #666;
}

/* Loading spinner: 8-dot ring with a transparency wave traveling around the
   circle. No center dot, no rotation. Each of the 8 dots is a box-shadow on a
   single ::before; the wave is created by varying each dot's rgba() alpha across
   8 keyframes so that the fully-transparent dot advances one position per step. */
.tmu-ga-spinner {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    flex: 0 0 auto;
}

.tmu-ga-spinner::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    margin: -3px 0 0 -3px;
    border-radius: 50%;
    background: transparent;
    animation: tmu-ga-wave 0.8s linear infinite;
}

@keyframes tmu-ga-spin {
    to { transform: rotate(360deg); }
}

/* dot order in box-shadow (clockwise from top): top, upper-right, right,
   lower-right, bottom, lower-left, left, upper-left */
@keyframes tmu-ga-wave {
    0% { box-shadow:
        0 -14px 0 rgba(247,197,61,0),  10px -10px 0 rgba(247,197,61,1),
        14px 0 0 rgba(247,197,61,1),   10px 10px 0 rgba(247,197,61,1),
        0 14px 0 rgba(247,197,61,1),   -10px 10px 0 rgba(247,197,61,1),
        -14px 0 0 rgba(247,197,61,1),  -10px -10px 0 rgba(247,197,61,1); }
    12.5% { box-shadow:
        0 -14px 0 rgba(247,197,61,1),  10px -10px 0 rgba(247,197,61,0),
        14px 0 0 rgba(247,197,61,1),   10px 10px 0 rgba(247,197,61,1),
        0 14px 0 rgba(247,197,61,1),   -10px 10px 0 rgba(247,197,61,1),
        -14px 0 0 rgba(247,197,61,1),  -10px -10px 0 rgba(247,197,61,1); }
    25% { box-shadow:
        0 -14px 0 rgba(247,197,61,1),  10px -10px 0 rgba(247,197,61,1),
        14px 0 0 rgba(247,197,61,0),   10px 10px 0 rgba(247,197,61,1),
        0 14px 0 rgba(247,197,61,1),   -10px 10px 0 rgba(247,197,61,1),
        -14px 0 0 rgba(247,197,61,1),  -10px -10px 0 rgba(247,197,61,1); }
    37.5% { box-shadow:
        0 -14px 0 rgba(247,197,61,1),  10px -10px 0 rgba(247,197,61,1),
        14px 0 0 rgba(247,197,61,1),   10px 10px 0 rgba(247,197,61,0),
        0 14px 0 rgba(247,197,61,1),   -10px 10px 0 rgba(247,197,61,1),
        -14px 0 0 rgba(247,197,61,1),  -10px -10px 0 rgba(247,197,61,1); }
    50% { box-shadow:
        0 -14px 0 rgba(247,197,61,1),  10px -10px 0 rgba(247,197,61,1),
        14px 0 0 rgba(247,197,61,1),   10px 10px 0 rgba(247,197,61,1),
        0 14px 0 rgba(247,197,61,0),   -10px 10px 0 rgba(247,197,61,1),
        -14px 0 0 rgba(247,197,61,1),  -10px -10px 0 rgba(247,197,61,1); }
    62.5% { box-shadow:
        0 -14px 0 rgba(247,197,61,1),  10px -10px 0 rgba(247,197,61,1),
        14px 0 0 rgba(247,197,61,1),   10px 10px 0 rgba(247,197,61,1),
        0 14px 0 rgba(247,197,61,1),   -10px 10px 0 rgba(247,197,61,0),
        -14px 0 0 rgba(247,197,61,1),  -10px -10px 0 rgba(247,197,61,1); }
    75% { box-shadow:
        0 -14px 0 rgba(247,197,61,1),  10px -10px 0 rgba(247,197,61,1),
        14px 0 0 rgba(247,197,61,1),   10px 10px 0 rgba(247,197,61,1),
        0 14px 0 rgba(247,197,61,1),   -10px 10px 0 rgba(247,197,61,1),
        -14px 0 0 rgba(247,197,61,0),  -10px -10px 0 rgba(247,197,61,1); }
    87.5% { box-shadow:
        0 -14px 0 rgba(247,197,61,1),  10px -10px 0 rgba(247,197,61,1),
        14px 0 0 rgba(247,197,61,1),   10px 10px 0 rgba(247,197,61,1),
        0 14px 0 rgba(247,197,61,1),   -10px 10px 0 rgba(247,197,61,1),
        -14px 0 0 rgba(247,197,61,1),  -10px -10px 0 rgba(247,197,61,0); }
    100% {
        box-shadow:
            0 -14px 0 rgba(247,197,61,0),  10px -10px 0 rgba(247,197,61,1),
            14px 0 0 rgba(247,197,61,1),   10px 10px 0 rgba(247,197,61,1),
            0 14px 0 rgba(247,197,61,1),   -10px 10px 0 rgba(247,197,61,1),
            -14px 0 0 rgba(247,197,61,1),  -10px -10px 0 rgba(247,197,61,1);
    }
}

.tmu-ga-date-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 15px;
    background: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
}

.tmu-ga-date-filter-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.tmu-ga-date-filter-presets {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.tmu-ga-date-preset,
.tmu-ga-apply-btn,
.tmu-ga-reset-btn {
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s ease;
    min-width: 140px;
    height: 34px;
    box-sizing: border-box;
}



.tmu-ga-custom-date-range {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tmu-ga-custom-date-field {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tmu-ga-custom-date-field label {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.tmu-ga-custom-date-range input[type="date"] {
    padding: 0 8px;
    font-size: 13px;
    border: 1px solid #ba9736;
    border-radius: 4px;
    background: #f3d87c;
    color: #222;
    height: 34px;
    box-sizing: border-box;
}

.tmu-ga-date-separator {
    font-size: 12px;
    color: #222;
}

.tmu-ga-apply-btn {
    padding: 0 14px;
    border: none;
    background: #2d7f91;
    color: #fff;
    font-weight: 700;
}

.tmu-ga-apply-btn:hover {
    background: #246a79;
    border: none;
}

.tmu-ga-reset-btn {
    padding: 0 12px;
    border: none;
    background: #bcbcbc;
    color: #333;
    font-weight: 700;
}

.tmu-ga-reset-btn:hover {
    background: #a8a8a8;
    border: none;
    color: #333;
}

.tmu-ga-datasource-bar {
    margin-bottom: 12px;
}

.tmu-ga-datasource-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e0e0e0;
}

.tmu-ga-datasource-tab {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    background: transparent;
    color: #888;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.15s ease;
}

.tmu-ga-datasource-tab:hover {
    color: #555;
    background: #f5f5f5;
}

.tmu-ga-datasource-tab.active {
    color: #2b5d67;
    border-bottom-color: #2b5d67;
    background: transparent;
}

.tmu-ga-live-action-bar {
    margin-bottom: 15px;
}

.tmu-ga-refresh-btn {
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    background: #2d7f91;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tmu-ga-refresh-btn:hover {
    background: #246a79;
    border: none;
}

.tmu-ga-refresh-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.tmu-ga-refresh-spinner {
    display: none;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

.tmu-ga-identities {
    margin-bottom: 15px;
}

.tmu-ga-identities-label {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #555;
}

.tmu-ga-identity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tmu-ga-identity-tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    background: #e6f3f4;
    color: #2b5d67;
    border-radius: 15px;
    border: 1px solid #bcd6da;
}

.tmu-ga-summary {
    margin-bottom: 20px;
}

.tmu-ga-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
}

.tmu-ga-summary-card {
    background: #ffffff;
    border: 1px solid #dde6e8;
    border-radius: 8px;
    padding: 16px 14px;
    text-align: center;
    transition: box-shadow 0.15s ease;
}

.tmu-ga-summary-card:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.tmu-ga-summary-value {
    font-size: 1.5em;
    font-weight: 700;
    color: #2b5d67;
    display: block;
    margin-bottom: 4px;
    line-height: 1.2;
}

.tmu-ga-summary-label {
    font-size: 12px;
    font-weight: 500;
    color: #555;
    letter-spacing: 0.5px;
}

/* Stats bar (temp.html footer/summary total) */
.tmu-ga-stats-bar {
    
    text-align: center;
    padding: 12px;
    font-weight: 600;
    
}

.tmu-ga-stats-bar span {
    margin: 0 12px;
}

.tmu-ga-stats-bar-header {
    background: #27808b;
    color: #f5f5f5;
}

.tmu-ga-stats-bar-footer {
    background: #b8ccd2;
    color: #333;
}


.tmu-ga-source-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #eee;
    margin-bottom: 12px;
}

.tmu-ga-source-tab {
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 500;
    border: none;
    background: transparent;
    color: #888;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.tmu-ga-source-tab:hover {
    color: #555;
    background: #f9f9f9;
}

.tmu-ga-source-tab.active {
    color: #2b5d67;
    border-bottom-color: #2b5d67;
    background: transparent;
}

.tmu-ga-source-count {
    display: inline-block;
    font-size: 10px;
    background: #e8e8e8;
    color: #666;
    border-radius: 10px;
    padding: 1px 7px;
    margin-left: 5px;
    vertical-align: middle;
}

.tmu-ga-source-tab.active .tmu-ga-source-count {
    background: #d4e9ec;
    color: #2b5d67;
}

.tmu-ga-table-wrapper {
    overflow-x: auto;
}

.tmu-ga-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 10px 10px 0px 0px;
    margin-bottom: 0;
    background: transparent;
}

.tmu-ga-table thead th {
    background: #b8ccd2;
    color: #333;
    text-align: center;
    padding: 12px;
    font-weight: 700;
    border: 1px solid #dde6e8;
}

.tmu-ga-table tbody tr {
    transition: background 0.1s ease;
}

.tmu-ga-table tbody tr:nth-child(odd) {
    background: #d7dfe2;
}

.tmu-ga-table tbody tr:nth-child(even) {
    background: #cfd8dc;
}

.tmu-ga-table tbody tr:hover {
    background: #c4d4d8;
}

.tmu-ga-table tbody td {
    padding: 8px 12px;
    border: 1px solid #e5ebed;
    color: #333;
    vertical-align: middle;
    line-height: 1.4;
}

.tmu-ga-table .tmu-ga-col-path {
    max-width: 300px;
    word-break: break-all;
}

.tmu-ga-table .tmu-ga-col-title {
    max-width: 250px;
    word-break: break-word;
}

.tmu-ga-table .tmu-ga-col-num {
    text-align: center;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.tmu-ga-table .tmu-ga-cell-identity {
    max-width: 220px;
    word-break: break-word;
    font-style: italic;
    color: #555;
}

.tmu-ga-pagination-container {
    display: flex;
    justify-content: center;
}

.tmu-ga-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 5px;
    font-size: 12px;
    color: #666;
}

.tmu-ga-page-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}

.tmu-ga-page-btn {
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #ccc;
    background: #fff;
    color: #555;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.15s ease;
    min-width: 28px;
    text-align: center;
}

.tmu-ga-page-btn:hover {
    background: #EABB43;
}

.tmu-ga-page-btn.active {
    background: #EABB43;
    color: #333;
}

.tmu-ga-page-dots {
    display: inline-block;
    padding: 4px 4px;
    font-size: 12px;
    color: #aaa;
    letter-spacing: 1px;
}

.tmu-ga-live-info {
    padding: 8px 14px;
    background: #e8f5e9;
    border: 1px solid #b2dfdb;
    border-radius: 5px;
    font-size: 12px;
    color: #2e7d32;
    margin-bottom: 12px;
}

.tmu-ga-live-info code {
    background: #c8e6c9;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 11px;
}

.tmu-ga-widget {
    position: relative;
}

.tmu-ga-toast {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.4;
    animation: tmu-ga-toast-slide-in 0.3s ease-out;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.tmu-ga-toast-error {
    background: #fff3f3;
    border: 1px solid #f5c6c6;
    color: #c0392b;
}

.tmu-ga-toast-success {
    background: #e8f5e9;
    border: 1px solid #b2dfdb;
    color: #2e7d32;
}

.tmu-ga-toast-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.tmu-ga-toast-msg {
    flex: 1;
}

.tmu-ga-toast-close {
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
    padding: 0 4px;
    opacity: 0.6;
    color: inherit;
    flex-shrink: 0;
}

.tmu-ga-toast-close:hover {
    opacity: 1;
}

.tmu-ga-toast-fade-out {
    animation: tmu-ga-toast-fade-out 0.4s ease-in forwards;
}

@keyframes tmu-ga-toast-slide-in {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes tmu-ga-toast-fade-out {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-8px); }
}

.tmu-ga-no-data {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 14px;
    background: #fafafa;
    border-radius: 8px;
    border: 1px dashed #ddd;
}

.tmu-ga-error {
    padding: 12px 16px;
    background: #fff3f3;
    border: 1px solid #f5c6c6;
    border-radius: 5px;
    color: #c0392b;
    font-size: 13px;
    margin-bottom: 10px;
}

.tmu-ga-no-company {
    padding: 20px;
    text-align: center;
    color: #666;
    background: #f9f9f9;
    border-radius: 8px;
}

.tmu-ga-no-company p {
    margin: 5px 0;
    font-size: 14px;
}

@media (max-width: 600px) {
    .tmu-ga-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tmu-ga-date-filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tmu-ga-date-filter-left {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .tmu-ga-table {
        font-size: 12px;
    }
    
    .tmu-ga-table thead th,
    .tmu-ga-table tbody td {
        padding: 7px 8px;
    }
    
    .tmu-ga-table .tmu-ga-col-path {
        max-width: 180px;
    }
    
    .tmu-ga-pagination {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}

.tmu-ga-date-controller-widget {
    font-family: Arial, Helvetica, sans-serif;
    background: #d6ae42;
    color: #222;
    border-radius: 0;
    border: none;

    border-radius: 10px 10px 0px 0px;
}

.tmu-ga-controller-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.tmu-ga-controller-heading {
    font-size: 1.7em;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
    margin: 0;
    line-height: 1.5em;
}

.tmu-ga-date-controller-widget .tmu-ga-stats-bar {
    margin-top: 0;
    border-radius: 0;
}

.tmu-ga-company-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    margin-bottom: 0;
    width: 100%;
    background: #27808b;
    color: #f5f5f5;
    padding: 12px;
    border-radius: 8px;
}

.tmu-ga-company-label {
    font-weight: 600;
    color: #f5f5f5;
}

.tmu-ga-company-name {
    color: #fff;
    font-weight: 700;
}

.tmu-ga-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tmu-ga-date-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tmu-ga-date-controller-widget .tmu-ga-date-preset {
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid #ba9736;
    border-radius: 4px;
    background: #f3d87c;
    color: #222;
    cursor: pointer;
    appearance: auto;
    height: auto;
    box-sizing: border-box;
    min-width: auto;
}

.tmu-ga-date-controller-widget .tmu-ga-date-preset:hover {
    border-color: #8a7020;
}

.tmu-ga-date-controller-widget .tmu-ga-date-preset:focus {
    outline: none;
    border-color: #8a7020;
    box-shadow: none;
}

.tmu-ga-custom-dates {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tmu-ga-custom-dates input[type="date"] {
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid #ba9736 !important;
    border-radius: 4px;
    background: #f3d87c !important;
    color: #222;
    height: auto;
    box-sizing: border-box;
    line-height: 1.3em !important;
}

.tmu-ga-custom-dates input[type="date"]:hover {
    border-color: #8a7020;
}

.tmu-ga-apply-dates {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    background: #2d7f91;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    height: auto;
    box-sizing: border-box;
    transition: background 0.15s ease;
}

.tmu-ga-apply-dates:hover {
    background: #246a79;
    border: none;
}

.tmu-ga-action-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tmu-ga-date-controller-widget .tmu-ga-apply-btn {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    background: #2d7f91;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: auto;
    box-sizing: border-box;
    transition: background 0.15s ease;
    min-width: auto;
}

.tmu-ga-date-controller-widget .tmu-ga-apply-btn:hover {
    background: #246a79;
    border: none;
}

.tmu-ga-date-controller-widget .tmu-ga-apply-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.tmu-ga-date-controller-widget .tmu-ga-reset-btn {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    background: #bcbcbc;
    color: #333;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: auto;
    box-sizing: border-box;
    transition: all 0.15s ease;
    min-width: auto;
}

.tmu-ga-date-controller-widget .tmu-ga-reset-btn:hover {
    background: #a8a8a8;
    border: none;
    color: #333;
}

.tmu-ga-apply-icon {
    display: inline-block;
    font-size: 14px;
}

.tmu-ga-links-widget {
    font-family: Arial, Helvetica, sans-serif;
    max-width: 100%;
    overflow-x: auto;
    padding: 14px;
    background: #edf0f1;
    border-radius: 12px;
    border: none;
}

/* Loading state: show only the spinner — no header, no background, no chrome. */
.tmu-ga-links-widget.is-loading {
    background: transparent;
    border: none;
    padding: 40px 0;
}

.tmu-ga-links-widget.is-loading .tmu-ga-header {
    display: none;
}

.tmu-ga-links-widget .tmu-ga-loading {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: #666;
}

.tmu-ga-pagination-widget {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    padding: 10px 20px;
}

.tmu-ga-page-info {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    text-align: center;
    width: 100%;
    display:none;
}

@media (max-width: 600px) {
    .tmu-ga-controller-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .tmu-ga-controller-heading {
        width: 100%;
    }

    .tmu-ga-filters {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .tmu-ga-date-controls {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .tmu-ga-date-controller-widget .tmu-ga-date-preset,
    .tmu-ga-custom-dates input[type="date"],
    .tmu-ga-apply-dates,
    .tmu-ga-date-controller-widget .tmu-ga-apply-btn,
    .tmu-ga-date-controller-widget .tmu-ga-reset-btn {
        width: 100%;
    }

    .tmu-ga-action-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .tmu-ga-custom-dates {
        flex-direction: column;
        align-items: stretch;
    }
}

.tmu-ga-status-widget {
    font-family: Arial, Helvetica, sans-serif;
    max-width: 100%;
    overflow-x: auto;
    padding: 14px;
    background: #edf0f1;
    border-radius: 12px;
    border: none;
}

.tmu-ga-status-widget .tmu-ga-loading {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: #666;
}

.tmu-ga-status-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 13px;
    color: #555;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.tmu-ga-status-meta strong {
    color: #333;
    font-weight: 600;
}

.tmu-ga-status-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.tmu-ga-breakdown-card {
    background: linear-gradient(135deg, #eef7f8 0%, #e0f0f2 100%);
    border-color: #bcd6da;
}

.tmu-ga-breakdown-card .tmu-ga-summary-value {
    color: #2b5d67;
}
