/* Shared CTA Button Styles */
.kw-tariffs-cta-container {
    text-align: center;
    margin-top: 30px;
    padding: 0;
    background-color: #f0f5fa; /* Light blueish background */
    border-radius: 4px;
    overflow: hidden; /* Ensures button's border-radius is contained */
}

.kw-tariffs-cta-button {
    display: block;
    padding: 20px;
    background-color: rgb(73, 148, 21); /* WordPress blue */
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.2s ease;
    width: 100%;
    border: none;
    cursor: pointer;
}

.kw-tariffs-cta-button:hover,
.kw-tariffs-cta-button:focus {
    background-color: rgb(35, 116, 6); /* Darker blue */
    color: #fff;
}

.kw-tariffs-cta-button:hover::after,
.kw-tariffs-cta-button:focus::after {
    transform: translateX(3px);
}

.kw-tariffs-cta-button::after {
    content: "→";
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.2s ease;
}

.kw-tariffs-view-all-link {
    margin: 30px 0;
    text-align: center;
}

.kw-tariffs-view-all-link a {
    color: #1a73e8;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.2s ease;
}

.kw-tariffs-view-all-link a:hover {
    color: #0d5bbc;
    text-decoration: underline;
}

.kw-performance-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.kw-performance-notice {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.kw-provider-perf-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    font-size: 0.95em;
}

.kw-provider-perf-table th, 
.kw-provider-perf-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.kw-provider-perf-table th {
    background-color: #f8f9fa;
    font-weight: bold;
}

.kw-provider-perf-table tr:hover {
    background-color: #fdfdfd;
}