/* Buttons row: equal width, centered text */
.action-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 12px 0 20px;
}

.action-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 10px 12px;
}

/* Rates table */
.rates-table-wrap {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
}

.rates-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.rates-table thead th {
    position: sticky;
    top: 0;
    background: #63AB45;
    color: #fff;
    font-weight: 600;
    letter-spacing: .2px;
    padding: 12px 14px;
    border-bottom: 2px solid #000;
}

.rates-table tbody tr {
    transition: background .15s ease;
}

.rates-table tbody tr:nth-child(odd) {
    background: #f8fafc;
}

.rates-table tbody tr:nth-child(even) {
    background: #f1f5f9;
}

.rates-table tbody tr:hover {
    background: #e2e8f0;
}

.rates-table td {
    padding: 12px 14px;
    border-top: 1px solid #e5e7eb;
    vertical-align: middle;
}

.rates-table .price {
    font-weight: 500;
    background: #000;
    border: 1px solid #000;
    display: inline-block;
    padding: 6px 10px;
    border-radius: 10px;
    color: #fff;
    width: 150px;
    text-align: center;
}

.rates-table .route {
    color: #0f172a;
}

/* Small screens */
@media (max-width: 576px) {
    .action-buttons {
        grid-template-columns: 1fr;
    }
}