/* Smooth scroll effect for anchor links */
html {
    scroll-behavior: smooth;
}

/* Table links */
.table a {
    font-weight: 500;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
    white-space: normal;
    word-break: break-word;
}

.table a:hover {
    color: #fff;
    padding-left: 6px;
    text-decoration: underline;
}

/* Table cells */
.table td,
.table th {
    vertical-align: middle;
    padding: 12px;
}

/* Border radius effect */
.table {
    border-radius: 6px;
    overflow: hidden;
    border-color: #ffffff !important;
    /* Table border white */
}

/* White serial number column */
.table th:first-child,
.table td:first-child {
    color: #ffffff;
}

/* White borders for all cells */
.table-bordered th,
.table-bordered td {
    border: 1px solid #ffffff !important;
}

/* Blink effect on section scroll */
@keyframes blinkHighlight {
    0% {
        background-color: #461f00;
    }

    50% {
        background-color: #46200086;
    }

    100% {
        background-color: transparent;
    }
}

.blink-section {
    animation: blinkHighlight 1.5s ease;
}

.scroll-offset {
    scroll-margin-top: 100px;
}


.table td:first-child {
    color: #121212;
}

/* Make table borders white */
.table-bordered th,
.table-bordered td {
    border: 1px solid #d4af7f !important;
}

.table {
    border-color: #999 !important;
}
.table-color{
    background-color: #461f00;
    color: #fff;
}


.list-indent {
    padding-left: 16px;

}

.line-indent>p {
    line-height: 12px;
    padding: 0 !important;
    margin: 0 !important;
}





.comparison-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.table-header,
.table-cell {
    border: 1px solid #ffffff;
    vertical-align: top;
    padding: 15px;

    word-wrap: break-word;
}

.table-header {
    font-size: 1.5em;
    text-align: center;
    color: #d4af7f;
    font-weight: 500;
}

.label-title {
    color: #d4af7f;
    font-size: 1.1em;
}

.description-text {
    color: #ffffff;
    margin-top: 8px;
    line-height: 1.5;
}

.accordion-button::after {
    filter: invert(1);
    /* makes it white */
}

/* Responsive Styles */
@media (max-width: 768px) {

    .comparison-table,
    .table-header,
    .table-cell,
    .table-row {
        display: block;
        width: 100%;
    }

    .comparison-thead {
        display: none;
    }

    .table-row {
        margin-bottom: 20px;
    }

    .table-cell {
        padding: 15px;
        position: relative;
    }

    .table-cell::before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
        margin-bottom: 8px;
        color: #d4af7f;
    }
}