﻿

.cmg-table-scroll {
    width: 100%;
    overflow-x: auto; 
}

.cmg-table {
    width: 100%;
    border-collapse: separate; 
    border-spacing: 0; 
    table-layout: fixed; 
}

    .cmg-table th,
    .cmg-table td {
        padding: 5px 10px;
        vertical-align: middle;
        white-space: normal;
        word-break: normal;
        overflow-wrap: anywhere; 
    }

    .cmg-table thead th.all-table-headers {
        text-align: center; 

    }

    .cmg-table thead th {
        border-bottom: 1px solid var(--cmg-border);
    }

    .cmg-table tbody th.all-table-left-header {
        font-weight: 600;
    }

    .cmg-table td.all-table-body-box {
    }


.cmg-table--striped tbody tr:nth-child(odd) td {
    background: rgba(0, 0, 0, 0.02);
}


.cmg-table--compact th,
.cmg-table--compact td {
    padding: 10px 14px;
    font-size: 0.95em;
}

.cmg-table thead tr:first-child th:first-child,
.cmg-table tbody tr td:first-child,
.cmg-table tbody tr th[scope="row"] {
    width: 40%;
}

:root {
    --cmg-border: #ffffff;
}

.cmg-table--hlines tbody tr + tr td,
.cmg-table--hlines tbody tr + tr th[scope="row"] {
    border-top: 1px solid var(--cmg-border);
}

.cmg-table--vlines thead th + th,
.cmg-table--vlines tbody th[scope="row"] + td,
.cmg-table--vlines tbody td + td {
    border-left: 1px solid var(--cmg-border);
}

.cmg-table.cmg-table--outer {
    border: 1px solid var(--cmg-border);
}

.cmg-table th {
    vertical-align: middle; 
}

@media (max-width: 380px) {
    .plan-item {
        padding: 12px 10px;
    }

    .plan-year {
        font-size: 0.8rem;
        padding: 4px 8px;
    }

    .plan-link {
        font-size: 0.85rem;
    }
}

.cmg-table th.all-table-left-header p {
    margin: 0; 
    line-height: 20px; 
    font-size: 12px;
}



:root {
    --_chipotle-v2---adobo-brown: #451400;
    --_chipotle-v2---roasted-red: #ac2117;
    --_chipotle-v2---color: white;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
}

/* Header simulation */
.header {
    background: white;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-text {
    font-family: 'Gotham', Arial, sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: var(--_chipotle-v2---adobo-brown);
}

    .logo-text span {
        color: var(--_chipotle-v2---roasted-red);
    }

/* Error page styles */
.error-page-section {
    min-height: calc(80vh - 70px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-page-container {
    max-width: 940px;
    width: 100%;
    margin: 0 auto;
}

.error-page-card {
    background: repeating-linear-gradient( 0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.01) 2px, rgba(0, 0, 0, 0.01) 4px ), linear-gradient(135deg, #f5f3ef 0%, #ebe8e2 100%);
    border-radius: 18px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

    .error-page-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        background: linear-gradient(90deg, var(--_chipotle-v2---roasted-red), #d42b1e);
        border-radius: 18px 18px 0 0;
    }

.error-page-image {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.error-page-title {
    color: var(--_chipotle-v2---adobo-brown);
    font-family: 'Gotham', Arial, sans-serif;
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
    line-height: 1.1;
}

.error-page-subtitle {
    color: var(--_chipotle-v2---roasted-red);
    font-family: 'Gotham', Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.error-page-text {
    color: var(--_chipotle-v2---adobo-brown);
    font-family: 'Gotham Book', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 30px auto;
}

    .error-page-text p {
        margin: 0;
    }

.error-page-button {
    display: inline-block;
    border: 2px solid var(--_chipotle-v2---adobo-brown);
    background-color: white;
    color: var(--_chipotle-v2---adobo-brown);
    text-transform: uppercase;
    border-radius: 25px;
    padding: 14px 32px;
    font-family: 'Gotham', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin: 5px;
    cursor: pointer;
}

    .error-page-button:hover {
        background-color: var(--_chipotle-v2---roasted-red);
        border-color: var(--_chipotle-v2---roasted-red);
        color: white;
        box-shadow: 0 4px 12px rgba(172, 33, 23, 0.3);
        transform: translateY(-2px);
    }

.error-page-code {
    display: inline-block;
    background-color: rgba(69, 20, 0, 0.08);
    color: var(--_chipotle-v2---adobo-brown);
    font-family: 'Gotham', Arial, sans-serif;
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    padding: 20px 40px;
    border-radius: 12px;
    margin-bottom: 20px;
    letter-spacing: -5px;
}

.error-page-actions {
    margin-top: 10px;
}

/* Decorative elements */
.decoration {
    position: absolute;
    opacity: 0.05;
    font-size: 200px;
    font-weight: 900;
    color: var(--_chipotle-v2---adobo-brown);
    pointer-events: none;
}

.decoration-left {
    left: -50px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
}

.decoration-right {
    right: -50px;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
}

/* Responsive */
@media screen and (max-width: 767px) {
    .error-page-card {
        padding: 40px 25px;
    }

    .error-page-title {
        font-size: 32px;
    }

    .error-page-code {
        font-size: 80px;
        padding: 15px 25px;
    }

    .error-page-subtitle {
        font-size: 16px;
    }

    .error-page-text {
        font-size: 14px;
    }
}

@media screen and (max-width: 479px) {
    .error-page-section {
        padding: 20px 10px;
    }

    .error-page-card {
        padding: 30px 20px;
    }

    .error-page-title {
        font-size: 26px;
        letter-spacing: 1px;
    }

    .error-page-code {
        font-size: 60px;
        padding: 10px 20px;
    }

    .error-page-subtitle {
        font-size: 14px;
    }

    .error-page-button {
        padding: 12px 24px;
        font-size: 12px;
        width: 100%;
        max-width: 250px;
    }
}
