/* Catalog Table Styles - Extracted from admin.css for use in main site */
/* Only includes catalog table styles without conflicting admin styles */
/* NOTE: This file does NOT include header, sidebar, or other admin-specific styles */
/* to prevent conflicts with the main site's header and navigation */

.catalog {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.catalog__table {
    width: 100%;
    min-width: 990px;
    margin-top: 20px;
}

.catalog__table thead {
    border-bottom: 20px solid #1a191f;
}

.catalog__table thead th {
    font-size: 14px;
    line-height: 24px;
    color: #c0c0c0 !important;
    font-weight: 400;
    padding: 0 20px 0 20px;
    line-height: 100%;
    margin-bottom: 0;
    border: none;
}

.catalog__table tbody tr {
    background-color: #222028;
    border-bottom: 10px solid #1a191f;
}

.catalog__table tbody td {
    padding: 15px 20px;
}

.catalog__text {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    font-size: 16px;
    color: #c0c0c0 !important;
    font-weight: 400;
    line-height: 24px;
}

.catalog__text a {
    color: #fff;
}

.catalog__text a:hover {
    color: #f9ab00;
}

.catalog__text--rate {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
}

.catalog__text--rate:before {
    content: "\eb2e";
    font-family: "tabler-icons";
    position: relative;
    font-size: 18px;
    line-height: 24px;
    font-weight: normal;
    color: #ffc312;
    margin-right: 5px;
    margin-top: 1px;
}

.catalog__text--red {
    color: #eb5757;
}

.catalog__text--green {
    color: #29b474;
}

.catalog__text--grey {
    color: #c0c0c0 !important;
}

.catalog__user {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.catalog__meta {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.catalog__meta h3 {
    color: #fff;
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 0;
}

.catalog__meta span {
    color: #c0c0c0 !important;
    font-size: 14px;
    line-height: 22px;
}

.catalog__avatar {
    display: block;
    position: relative;
    width: 46px;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid #1a191f;
    margin-right: 15px;
    overflow: hidden;
}

.catalog__avatar img {
    width: 100%;
}

.catalog__btns {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.catalog__btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    font-size: 16px;
    color: #fff;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    margin-right: 10px;
}

.catalog__btn i {
    font-size: 20px;
}

.catalog__btn:last-child {
    margin-right: 0;
}

.catalog__btn--delete {
    background-color: rgba(235, 87, 87, 0.1);
}

.catalog__btn--delete i {
    color: #eb5757;
}

.catalog__btn--delete:hover {
    background-color: rgba(235, 87, 87, 0.2);
}

.catalog__btn--delete:hover i {
    color: #eb5757;
}

.catalog__btn--edit {
    background-color: rgba(55, 150, 246, 0.1);
}

.catalog__btn--edit i {
    color: #3796f6;
}

.catalog__btn--edit:hover {
    background-color: rgba(55, 150, 246, 0.2);
}

.catalog__btn--edit:hover i {
    color: #3796f6;
}

.catalog__btn--banned {
    background-color: rgba(41, 180, 116, 0.1);
}

.catalog__btn--banned i {
    color: #29b474;
}

.catalog__btn--banned:hover {
    background-color: rgba(41, 180, 116, 0.2);
}

.catalog__btn--banned:hover i {
    color: #29b474;
}

.catalog__btn--view {
    background-color: rgba(255, 195, 18, 0.1);
}

.catalog__btn--view i {
    color: rgba(255, 195, 18, 0.8);
}

.catalog__btn--view:hover {
    background-color: rgba(255, 195, 18, 0.2);
}

.catalog__btn--view:hover i {
    color: #ffc312;
}

@media (min-width: 768px) {
    .catalog__table {
        margin-top: 24px;
    }
}

/* Main Title Styles */
/* Main Title Styles */
.main__title {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 6px;
    border-bottom: 1px solid #222028;
    padding-bottom: 20px;
}

.main__title h2 {
    color: #fff;
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    margin-bottom: 0;
}

.main__title h2 b {
    font-weight: 700;
}

.main__title-stat {
    color: #c0c0c0 !important;
    font-size: 14px;
    margin-left: 20px;
    margin-top: 10px;
}

.main__title-wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: auto;
    width: 100%;
    margin-top: 20px;
}

.main__title-link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 120px;
    border-radius: 8px;
    border: 2px solid #f9ab00;
    margin-left: auto;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    transition: 0.4s ease;
}

.main__title-link:hover {
    color: #fff;
    background-color: rgba(249, 171, 0, 0.05);
}

.main__title-link--wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    padding: 0 20px;
}

@media (min-width: 576px) {
    .main__title-wrap {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 768px) {
    .main__title-stat {
        margin-top: 10px;
    }
    .main__title-wrap {
        width: auto;
        margin-top: 0;
    }
    .main__title {
        padding-bottom: 30px;
    }
    .main__title-link--wrap {
        position: relative;
        top: auto;
        right: auto;
        margin-right: 30px;
    }
}

@media (min-width: 1200px) {
    .main__title {
        padding-bottom: 0;
        height: 80px;
    }
}

/* Dashbox Styles for Profile Dashboard */
.dashbox {
    background-color: #222028;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.dashbox__title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #1a191f;
}

.dashbox__title h3 {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0;
}

.dashbox__title h3 i {
    font-size: 24px;
    margin-right: 10px;
    color: #f9ab00;
    line-height: 30px;
}

.dashbox__wrap {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.dashbox__more {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 30px;
    background-color: #1a191f;
    padding: 0 10px;
    font-size: 14px;
    margin-left: 15px;
    color: #fff;
    border-radius: 8px;
    transition: 0.4s ease;
}

.dashbox__more:hover {
    color: #f9ab00;
}

.dashbox__refresh {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    color: #fff;
    font-size: 20px;
    transition: 0.4s ease;
}

.dashbox__refresh:hover {
    color: #f9ab00;
}

.dashbox__table-wrap {
    position: relative;
    display: block;
    width: 100%;
    padding: 20px 0;
}

.dashbox__table {
    width: 100%;
    min-width: 500px;
    border-spacing: 0;
}

.dashbox__table thead {
    border-bottom: 1px solid #1a191f;
}

.dashbox__table thead th {
    font-size: 12px;
    color: #c0c0c0 !important;
    font-weight: 400;
    padding: 0 10px 15px 0;
    line-height: 100%;
    margin-bottom: 0;
    border: none;
}

.dashbox__table thead th:first-child {
    padding-left: 20px;
}

.dashbox__table tbody tr {
    border-bottom: none;
    background-color: transparent;
}

.dashbox__table tbody td {
    padding: 0;
    background-color: transparent;
    border: 0px solid transparent;
}

.dashbox__table tbody td:first-child {
    padding-left: 20px;
}

.dashbox__table tbody td:last-child .dashbox__table-text {
    padding-right: 0;
}

.dashbox__table-text {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    line-height: 30px;
    padding: 10px 15px 0 0;
    background-color: transparent;
    white-space: nowrap;
}

.dashbox__table-text a {
    color: #fff;
}

.dashbox__table-text a:hover {
    color: #f9ab00;
}

.dashbox__table-text i {
    font-size: 14px;
    margin-right: 6px;
    color: #ffc312;
    line-height: 24px;
    margin-top: 1px;
}

.dashbox__table-text--rate {
    font-weight: 600;
    font-size: 16px;
}

.dashbox__table-text--rate i {
    font-weight: normal;
    font-size: 18px;
}

.dashbox__table-text--red {
    color: #eb5757;
}

.dashbox__table-text--green {
    color: #29b474;
}

.dashbox__table-text--grey {
    color: #c0c0c0 !important;
}

@media (min-width: 768px) {
    .dashbox {
        margin-top: 24px;
    }
    .dashbox__title {
        padding: 20px 30px;
    }
    .dashbox__table thead th:first-child {
        padding-left: 30px;
    }
    .dashbox__table tbody td:first-child {
        padding-left: 30px;
    }
}
