/* General page structure and elements */
.kw-tariffs-main {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    font-family: sans-serif; /* Basic font stack */
}

/* Note below main page header */
.kw-tariffs-page-subheading-note {
    text-align: center;
    margin-top: -10px; /* Adjust to bring closer to header if needed, considering header's bottom margin/padding */
    margin-bottom: 25px; /* Space before the tariff list container */
    font-size: 0.95em;
    color: #555d66; /* WordPress medium gray */
    line-height: 1.5;
}

.kw-tariffs-page-subheading-note p {
    margin: 0; /* Remove default paragraph margin */
}

.kw-tariffs-page-subheading-note a {
    font-weight: bold; /* Make the link stand out a bit */
    text-decoration: underline;
    /* Standard link colors will be inherited or can be set explicitly if needed */
}

/* Tariff list container and messages */
#kw-tariffs-all-list-container {
    margin-top: 25px;
}

.kw-tariffs-loading,
.kw-tariffs-no-tariffs {
    font-style: italic;
    color: #555d66; /* WordPress medium gray */
    text-align: center;
    padding: 30px 15px;
    font-size: 1.1em;
    background-color: #f9f9f9;
    border: 1px dashed #ddd;
    border-radius: 4px;
    min-height: 300px; /* Added to reduce layout shift */
    display: flex; /* Added for centering text in taller box */
    align-items: center; /* Added for centering text in taller box */
    justify-content: center; /* Added for centering text in taller box */
}

/* Supplier headers within sections */
.kw-tariffs-supplier-header {
    margin: 15px 0 8px;
    font-size: 1em;
    color: #333;
    font-weight: bold;
}

.kw-tariffs-supplier-header a {
    color: #0066cc; /* Dark blue for better link visibility */
    text-decoration: none;
    font-weight: bold; /* Make supplier names stand out more */
}

.kw-tariffs-supplier-header a:hover {
    text-decoration: underline;
    color: #004499; /* Slightly darker blue on hover */
}

/* Specific styling for tariff links in the list */
.kw-tariffs-list .kw-tariffs-list-item a {
    color: #002b5c; /* Darker blue for tariff links */
    text-decoration: none;
}

.kw-tariffs-list .kw-tariffs-list-item a:hover {
    color: #001a3a; /* Even darker blue on hover */
    text-decoration: underline;
}

.kw-tariff-link-symbol {
    font-size: 0.8em;
    margin-left: 2px;
    opacity: 0.7;
}
