/* Reset and base styles for pricetable */
.pricetable_container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.pricetable_container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    padding: 20px;
}

.pricetable_container .pricetable_container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

/* Header styles */
.pricetable_header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #F15B2A;
}

.pricetable_header h1 {
    color: #F15B2A;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.pricetable_subtitle {
    color: #666;
    font-size: 1.1rem;
    font-weight: 400;
}

/* Table container */
.pricetable_table-container {
    overflow-x: auto;
    margin-bottom: 30px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

/* Table styles */
.pricetable_discount-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.pricetable_discount-table thead {
    background-color: #333;
    color: white;
}

.pricetable_discount-table th {
    padding: 16px 12px;
    text-align: center;
    font-weight: 600;
    border-right: 1px solid #444;
}

.pricetable_discount-table th:last-child {
    border-right: none;
}

.pricetable_vehicle-heading {
    text-align: left;
    padding-left: 20px;
}

.pricetable_discount-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s;
}

.pricetable_discount-table tbody tr:hover {
    background-color: #f5f5f5;
}

.pricetable_discount-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.pricetable_discount-table tbody tr:nth-child(even):hover {
    background-color: #f0f0f0;
}

.pricetable_discount-table td {
    padding: 14px 12px;
    text-align: center;
    border-right: 1px solid #e0e0e0;
}

.pricetable_discount-table td:first-child {
    text-align: left;
    padding-left: 20px;
    font-weight: 600;
    color: #333;
    border-right: 1px solid #e0e0e0;
}

.pricetable_discount-table td:last-child {
    border-right: none;
}

/* Highlight column for >7 days */
.pricetable_highlight-col {
    background-color: #F15B2A !important;
    color: white;
}

.pricetable_per-day {
    font-size: 0.8rem;
    font-weight: normal;
    opacity: 0.9;
    display: block;
    margin-top: 4px;
}

.pricetable_highlight-cell {
    background-color: rgba(241, 91, 42, 0.1);
    font-weight: 600;
    color: #F15B2A;
}

/* Vehicle name styling */
.pricetable_vehicle-name {
    color: #333;
    font-weight: 600;
}

/* Table footer */
.pricetable_table-footer {
    padding: 15px 20px;
    background-color: #f8f8f8;
    border-top: 1px solid #e0e0e0;
    border-radius: 0 0 6px 6px;
}

.pricetable_note {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Instructions section */
.pricetable_instructions {
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 6px;
    border-left: 4px solid #F15B2A;
    margin-top: 30px;
}

.pricetable_instructions h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.pricetable_instructions ol {
    margin-left: 20px;
    color: #555;
}

.pricetable_instructions li {
    margin-bottom: 10px;
    padding-left: 5px;
}

.pricetable_instructions code {
    background-color: #eee;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    color: #d63384;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricetable_container .pricetable_container {
        padding: 15px;
    }
    
    .pricetable_header h1 {
        font-size: 2rem;
    }
    
    .pricetable_instructions {
        padding: 20px;
    }
}




.menu-our-address-container .menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-our-address-container .menu-item {
    margin-bottom: 8px;
}

.menu-our-address-container .address-line {
    display: block;
    color: #666; /* Match your footer text color */
    font-size: 14px; /* Match your footer font size */
    line-height: 1.4;
}

/* If using links instead of spans */
.menu-our-address-container .menu-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.menu-our-address-container .menu-item a:hover {
    color: #F15B2A; /* Your brand orange */
    text-decoration: underline;
}


.sc_layouts_menu_nav a:hover{
    color: #000;
}