:root {
    --color--dark-100: #312c34;
    --color--dark-80: #6b676d;
    --white: white;
    --color--primary-light: #f3eef6;
    --color--primary: #eb6d2f;
    --color--secondary: #5a3733;
    --black: black;
    --color--dark-60: #a19da1;
    --color--secondary-light: #fdecf6;
    --color--white: white;
}

.shimmer-loader {
    width: 100%;
    height: 100px;
    background-color: #f6f7f8;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.shimmer-loader .shimmer {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        #f6f7f8 0%,
        #e9ecef 20%,
        #f6f7f8 40%,
        #f6f7f8 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.was-validated .form-control:valid,
.form-control.is-valid {
    border-color: #33cab1;
}

.icon-large {
    font-size: 32px;
}

.icon-large-60 {
    font-size: 60px;
}

.bg-primary {
    background-color: var(--color--primary) !important;
}

.bg-primary-light {
    background-color: #f3eef6;
}

.bg-secondary {
    background-color: var(--color--secondary) !important;
}

.bg-secondary-light {
    background-color: #fdecf6;
}

.text-dark-80 {
    color: #6b676d;
}

.text-primary-light {
    color: #f3eef6;
}

.text-secondary-light {
    color: #fdecf6;
}

#sortable-list {
    list-style: none;
    padding: 0;
}

#sortable-list .list-group-item {
    cursor: move;
    margin-bottom: 5px;
}

.txt-truncate {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 3em;
    line-height: 1.5em;
}

figure.image {
    margin: 0; /* Remove default margin */
    text-align: center; /* Optional: center the image */
}

figure.image img {
    max-width: 100%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove bottom space under image */
    margin: 0 auto; /* Center the image horizontally */
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #5a3733;
    border-color: #5a3733;
}

.page-link {
    color: #5a3733;
}

/* General table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
    border-radius: 8px;
    overflow: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color--primary-light);
}

/* Table header styling */
table th {
    background-color: var(--color--primary);
    color: #fff;
    padding: 12px 15px;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid var(--color--primary-light);
}

/* Table row styling */
table td {
    padding: 10px 15px;
    border-bottom: 1px solid var(--color--primary-light);
    color: #333;
}

.td_inner {
    padding: 12px;
    border: 1px solid var(--color--primary-light);
    font-size: 0.9em;
}

/* Alternate row background color for better readability */
table tr:nth-child(even) {
    /* background-color: #f9f9f9; */
}

/* Hover effect for rows */
table tr:hover {
    background-color: rgba(
        235,
        13,
        140,
        0.1
    ); /* Light version of primary color */
}

/* Styling for the table footer */
table tfoot td {
    background-color: var(--color--secondary);
    color: #fff;
    font-weight: bold;
    text-align: right;
    padding: 10px 15px;
}

/* Responsive table styling */
@media (max-width: 768px) {
    table {
        font-size: 14px;
    }

    table th,
    table td {
        padding: 8px 10px;
    }
}

.note {
    margin-top: 30px;
    padding: 15px;
    background-color: var(--color--primary-light);
    border-left: 4px solid var(--color--primary);
}

.ht-plans-menu .tab__item a,
.ht-tab-menu .tab__item a {
    min-width: 120px;
}

a {
    color: var(--color--primary);
    text-decoration: none;
}

/* a:active {
    color: var(--color--primary-light) !important;
    background-color: var(--color--primary) !important;
} */

a:hover {
    color: var(--color--secondary) !important;
    /* text-decoration: underline; */
}
