/* === js/components/filterTable/index.css === */
.filterTable {
    .label-styling {
        font-weight: 400;
        font-size: 11px !important;
        line-height: 21px;
        color: #101010;
    }

    .form-control:focus {
        box-shadow: none;
        outline: 1px solid #006462;
    }

    .filter-text {
        font-size: 18px;
        font-weight: 600;
        color: #006462;
        margin-bottom: 0 !important;
    }

    .text-hayyu-hijau {
        color: #006462;
    }

    .button-sm {
        width: 100%;
        height: 44px;
        box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.1);
    }

    .custom-drawer-bottom {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        max-height: 60%;
        background-color: #fff;
        box-shadow: 0 -4px 13px rgba(0, 0, 0, 0.1);
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        transform: translateY(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
        display: flex;
        flex-direction: column;
    }

    .custom-drawer-bottom.show {
        transform: translateY(0);
    }

    .drawer-content {
        height: 100%;
        overflow-y: scroll;
        display: flex;
        flex-direction: column;
    }

    .drawer-header {
        flex: 0 0 auto;
        padding: 1rem;
    }

    .drawer-header-text {
        font-size: 18px;
        font-weight: 600;
        color: #1F1F1F;
        margin-bottom: 0 !important;
    }

    .button-select {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 12px;
        color: #1F1F1F;
        background-color: white;
        border: 1px solid #b2b2b2;
    }

    .button-select:focus {
        outline: none;
        box-shadow: none;
    }

    .text-select {
        font-size: 11px;
        font-weight: 400;
        color: #1F1F1F;
    }


    .drawer-body {
        flex: 1 1 auto;
        overflow-y: scroll;
        padding: 1rem;
        max-height: 90vh;
    }

    .drawer-footer {
        flex: 0 0 auto;
        padding: 1rem;
        background-color: #fff;
        box-shadow: 4px 0px 13px 0px rgba(0, 0, 0, 0.1);
    }

    .radio-indicator {
        width: 20px;
        height: 20px;
        border: 1px solid #006462;
        border-radius: 50%;
        background-color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.2s ease;
        position: relative;
    }

    .radio-indicator.selected::after {
        content: "";
        width: 10px;
        height: 10px;
        background-color: #006462;
        border-radius: 50%;
        transition: all 0.2s ease;
    }

    .radio-indicator:focus {
        outline: none;
        box-shadow: none;
    }

    .button-select-drawer {
        border: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
    }

    .button-select-drawer:focus {
        outline: none;
        box-shadow: none;
    }

    .wrapper-multiselect {
        border-radius: 5px;
        border: 1px solid #b2b2b2;
        padding: 8px 12px;
        height: auto;
        max-height: none;
        overflow: hidden;
        gap: 5px;
        cursor: pointer;
    }

    .wrapper-item-multiselect {
        max-width: 48%;
        flex: 1 1 calc(48%);
        padding: 8px;
        border: 1px solid #b2b2b2
    }

    .allperiod-box {
        background-color: inherit;
        color: #1f1f1f;
        border: 1px solid #b2b2b2;
        border-top-left-radius: 7px;
        border-bottom-left-radius: 7px;
        border-right: 0;
        padding: 7px 12px;
        gap: 5px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .input-allperiod-box {
        border-top-right-radius: 1px;
        border-top-left-radius: 1px;
        border: 1px solid #b2b2b2;
        border-top-right-radius: 7px;
        border-bottom-right-radius: 7px;
        overflow: hidden;
    }

    .input-allperiod-box .datepicker-input {
        border: 0 !important;
        border-radius: 0 !important;
        line-height: 0 !important;
        outline: 0;
        height: 31px;
    }

    .icon-input-allperiod {
        background-color: inherit;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-right: 12px;
    }
}

.uiselect-filtertable{
    .ui-select-container.hide-caret i {
        display: none;
    }
}
/* === js/components/compareReport/index.css === */
.compareReport {
    .table-nodes {
        border: 1px solid #E0E2EB;
        border-radius: 10px;
        overflow: hidden;

        table {
            margin-bottom: 0px;

            .btn {
                border-radius: 8px;
            }
        }

        thead {
            border: none;
            background: #e6f0ef;
        }

        th, .action {
            padding: 6px;
        }

        .input {
            width: 50%;
        }

        th:first-child, td:first-child {
            padding-left: 10px;
        }
        tr td {
            border: none;
        }

    }

    .label-styling {
        font-weight: 400;
        font-size: 11px !important;
        line-height: 21px;
        color: #101010;
    }
    .form-control:focus {
        box-shadow: none;
        outline: 1px solid #006462;
    }

    .text-filter {
        line-height: 23.8px;
        font-weight: 600;
        font-size: 14px;
        color: #101010;
    }

    .button-style {
        width: 119px;
        height: 38px;
        padding: 8px 12px;
        border-radius: 8px;
        border: none;
        cursor: pointer;
    }

    .button-style:hover,
    .button-style:focus {
        background: linear-gradient(135deg, #006462 0%, #004d4b 100%) !important;
        box-shadow: 0 4px 12px 0 rgba(0, 100, 98, 0.3) !important;
        outline: none !important;
    }

    .button-radio {
        min-width: 70px;
        height: 31px;
        padding: 8px 16px;
        background-color: #fefefe;
        border-color: #cbd5e1;
        color: #101010;
        font-weight: 400;
        font-size: 14px;
        line-height: 23.8px;
        text-align: center;
        align-items: center;
    }

    .button-radio:focus {
        border: 1px solid #006462;
        box-shadow: 0 4px 12px 0 rgba(0, 100, 98, 0.2) !important;
        outline: none !important;
    }

    .button-selected {
        background-color: #e6f0ef;
        color: #101010;
    }

    .input-datepicker {
        width: 100%;
        height: 32px;
        border-radius: 8px 0 0 8px;
        padding: 8px 12px;
        border: 1px solid #e0e2eb;
        border-right: none;
        cursor: pointer;
    }

    .input-datepicker:focus {
        box-shadow: none;
        outline: 1px solid #006462;
    }

    .input-datepicker:focus ~ .icon-input {
        outline: none;
        border: 1px solid #006462;
        border-left: none;
    }
    .icon-input {
        height: 31px;
        border-radius: 0 8px 8px 0;
        background-color: white;
        border: 1px solid #e0e2eb;
        border-left: none;
        align-items: center;
        padding: 0;
        padding-right: 2px;
        padding-top: 2px;
        font-size: 18px;
        cursor: pointer;
    }

    .ui-select-container {
        min-height: 31px;
        border-radius: 8px !important;
        background-color: white;
        padding: 4px;
        outline: none;
        box-shadow: none;
        border: 1px solid #e0e2eb !important;
    }

    .ui-select-container:focus-within {
        outline: 1px solid #006462;
    }

    .ui-dropdown-menu {
        width: auto !important;
    }

    .ui-select-multiple .ui-select-container {
        border-radius: 8px !important;
        border: 1px solid #e0e2eb !important;
    }

    .ui-select-match {
        border: none;
        outline: none;
        box-shadow: none;
    }

    .ui-select-match-text {
        overflow: hidden;
        text-align: left !important;
    }

    .ui-select-match.btn-default-focus {
        box-shadow: none;
        border: none;
    }

    .ui-select-container input,
    .ui-select-container .btn-default {
        background-color: white !important;
        height: auto !important;
        text-align: left;
        border: 0 !important;
        padding-top: 2px !important;
        padding-bottom: 2px !important;
    }

    .ui-select-choices-row > span {
        text-align: left !important;
    }

    .ui-select-toggle.btn {
        background-color: white;
        border: none;
        outline: none;
        box-shadow: none;
    }

    .ui-select-search:focus {
        border: none;
        outline: none;
        box-shadow: none;
    }

    .custom-checkbox {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 15px;
        min-height: 15px;
        border: 1px solid #eeeeee;
        border-radius: 4px;
        background-color: white;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

    .custom-checkbox.checked {
        background-color: #006462;
    }

    .custom-checkbox svg {
        width: 12px;
        height: 12px;
        color: white;
        display: none;
    }

    .custom-checkbox.checked svg {
        display: block;
    }
}

/* === js/components/chart/index.css === */
.card-apex {
    flex: 1 1 45%; 
    border-radius: 8px;
    padding: 20px;
    background-color: white;
}

.card-apex.w-100 {
    flex: 1 1 100%;  
}

.title-card{
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
}

.card-flex{
    display: flex ;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
/* === js/components/progressCircleBar/index.css === */
/* .circular-progress-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
  }
  
  .progress-ring {
    transform: rotate(-90deg); 
  }
  
  .progress-ring__circle,
  .progress-ring__circle-bg {
    transition: stroke-dashoffset 0.3s;
    transform: rotate(0deg);
    transform-origin: 50% 50%;
  }
  
  .circular-progress-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  } */


  .circular-progress-wrapper {
    position: relative;
    display: inline-block;
  }
  
  .progress-ring {
    transform: rotate(-90deg);
  }
  
  .progress-ring__circle,
  .progress-ring__circle-bg {
    transition: stroke-dashoffset 0.3s;
    transform: rotate(0deg);
    transform-origin: 50% 50%;
  }
  
  .circular-progress-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  
/* === js/components/tableComponent/index.css === */
.tableComponent {
    w-20 {
        min-width: 20% !important;
    }

    .w-15 {
        width: 15% !important;
    }

    .w-10 {
        width: 10% !important;
    }

    .w-5 {
        width: 5% !important;
    }

    .btn-export {
        /* width: 150px !important; */
        height: 32px !important;
        border-radius: 5px;
        padding: 7px 11px;
    }

    .button-dropdown {
        height: 32px !important;
        border-radius: 5px;
        padding-top: 3px;
        padding-bottom: 3px;
    }

    .font-label-searching {
        font-size: 11px;
        line-height: 15px;
        font-weight: 400;
    }

    .btn-searching {
        width: 109px !important;
        height: 32px !important;
        border-radius: 7px;
        border: 1px solid #006462;
        color: #006462;
        font-size: 11px;
        line-height: 15px;
        font-weight: 400;
        background-color: white;
    }

    .btn-searching:hover,
    .btn-searching:focus {
        background: linear-gradient(135deg, rgba(0, 100, 98, 0.1) 0%, rgba(0, 77, 75, 0.1) 100%) !important;
        box-shadow: 0 4px 12px 0 rgba(0, 100, 98, 0.2) !important;
        color: #006462;
        outline: none !important;
    }

    .title-styling {
        font-size: 11px;
        font-weight: 400;
        line-height: 21px;
        color: #1f1f1f;
    }

    .table-style {
        border-radius: 5px;
        overflow: hidden;
    }

    .st-sort-ascent:before,
    .st-sort-descent:before {
        content: none !important;
    }

    .table td,
    .table th {
        border-top: none;
    }

    .table tbody {
        font-weight: 500 !important;
    }

    .button-add-column {
        width: 135px;
        height: 32px;
        border-radius: 5px;
        padding: 8px 18px;
        border: none;
        cursor: pointer;
        font-size: 0.8rem;
        background-color: #006462;
        color: white;
    }

    .button-add-column:hover,
    .button-add-column:focus {
        background: linear-gradient(135deg, #006462 0%, #004d4b 100%) !important;
        box-shadow: 0 4px 12px 0 rgba(0, 100, 98, 0.3) !important;
        color: white;
        outline: none !important;
    }

    .button-show-column {
        height: 32px;
        border-radius: 5px;
        padding: 9px 20px;
        border: 1px solid #006462;
        cursor: pointer;
        font-size: 0.8rem;
        background-color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        text-align: center;
        color: #006462;
    }

    .button-show-column:hover,
    .button-show-column:focus {
        background: linear-gradient(135deg, rgba(0, 100, 98, 0.1) 0%, rgba(0, 77, 75, 0.1) 100%) !important;
        box-shadow: 0 4px 12px 0 rgba(0, 100, 98, 0.2) !important;
        color: #006462;
        outline: none !important;
    }

    .btn-add-new {
        min-width: 135px;
        height: 32px;
        border-radius: 5px;
        padding: 8px 18px;
        border: none;
        cursor: pointer;
        font-size: 0.8rem;
        background-color: #006462;
        color: white;
    }

    .btn-add-new:hover,
    .btn-add-new:focus {
        background: linear-gradient(135deg, #006462 0%, #004d4b 100%) !important;
        box-shadow: 0 4px 12px 0 rgba(0, 100, 98, 0.3) !important;
        color: white;
        outline: none !important;
    }
    .button-add-new{
        width: auto;
    }

    .button-custom-action {
        border-radius: 0;
        display: block;
        background-color: inherit;
    }

    .button-custom-action svg {
        color: black;
    }

    .header-filter {
        background-color: #B0CFCE !important;
        color: white !important;
    }

    .header-filter td {
        height: 45px !important;
    }

    .input-style {
        width: 100%;
        height: 32px;
        background-color: white;
        border: none;
        border-radius: 7px;
        padding: 7px;
    }

    .input-flatpickr {
        height: 32px;
        background-color: white;
        border: none;
        border-radius: 7px;
        display: block;
    }

    .button-flatpickr {
        height: 32px;
        border-radius: 0 7px 7px 0;
        background-color: #f14950;
        color: white;
    }

    .clear-btn {
        width: 18px;
        height: 32px;
        background-color: white;
        border: none;
        border-radius: 7px;
    }

    .input-style::placeholder {
        font-size: 11px;
        font-weight: 400;
    }

    .input-style:focus {
        border: none;
        outline: none;
        box-shadow: none;
    }

    .ui-select-container {
        width: 100%;
        height: 32px;
        border-radius: 7px !important;
        background-color: white;
        padding: 4px;
        outline: none;
        box-shadow: none;
        display: flex;
        align-items: center;
        min-width: auto;
        overflow: hidden;
    }

    .ui-dropdown-menu {
        width: auto !important;
    }

    .ui-select-multiple .ui-select-container {
        border-radius: 7px !important;
        border: 1px solid #e0e2eb !important;
    }

    .ui-select-match {
        border: none;
        outline: none;
        box-shadow: none;
        min-width: 100%;
    }

    .ui-select-match-text {
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 95%;
        display: block;
    }

    .ui-select-match.btn-default-focus {
        box-shadow: none;
        border: none;
    }

    .ui-select-toggle>.caret {
        margin-top: -3px !important;
    }

    .ui-select-container input,
    .ui-select-container .btn-default {
        background-color: white !important;
        /* width: 140px !important; */
        padding: 2px !important;
        height: 100% !important;
        text-align: center;
    }

    /* .ui-select-choices-row > span {
        text-align: center !important;
    } */

    .ui-select-toggle.btn {
        background-color: white;
        border: none;
        outline: none;
        box-shadow: none;
    }

    .ui-select-search:focus {
        border: none;
        outline: none;
        box-shadow: none;
    }

    .filter-input {
        border-radius: 5px !important;
    }

    .icon-pencil-style {
        color: #55ace6;
    }

    .icon-trash-style {
        color: #f14950;
    }

    .icon-restore-style {
        color: #efb90a;
    }

    .dropdown-toggle::after {
        display: none;
    }

    .allperiod-box {
        background-color: inherit;
        color: #1F1F1F;
        border: 1px solid #EEEEEE;
        border-top-left-radius: 7px;
        border-bottom-left-radius: 7px;
        padding: 7px 12px;
        gap: 5px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .input-allperiod-box {
        border-top-right-radius: 1px;
        border-top-left-radius: 1px;
        border: 1px solid #EEEEEE;
        border-top-right-radius: 7px;
        border-bottom-right-radius: 7px;
        overflow: hidden;
    }

    .icon-input-allperiod {
        background-color: inherit;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-right: 12px;
    }

    .custom-checkbox {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 15px;
        min-height: 15px;
        border: 1px solid #1F1F1F;
        border-radius: 4px;
        background-color: white;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

    .custom-checkbox.checked {
        background-color: #006462;
    }

    .custom-checkbox svg {
        width: 12px;
        height: 12px;
        color: white;
        display: none;
    }

    .custom-checkbox.checked svg {
        display: block;
    }
}

@media (max-width: 768px) {
    .tableComponent {
        .btn-export {
            width: 100% !important;
            height: 32px !important;
            border-radius: 5px;
            padding: 7px 11px;
        }

        .button-add-column {
            width: 100% !important;
            height: 32px;
            border-radius: 5px;
            padding: 8px 18px;
            border: none;
            cursor: pointer;
            font-size: 0.8rem;
            background-color: #006462;
        }

        .btn-add-new {
            position: fixed;
            bottom: 27px;
            right: 36px;
            z-index: 1000;
            min-width: 135px;
            height: 32px;
            border-radius: 5px;
            padding: 8px 18px;
            border: none;
            cursor: pointer;
            font-size: 0.8rem;
            background-color: #006462;
            color: white;
        }

        .allperiod-box {
            background-color: inherit;
            color: #1F1F1F;
            border: 1px solid #EEEEEE;
            border-top-left-radius: 7px;
            border-bottom-left-radius: 7px;
            padding: 7px 12px;
            gap: 5px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: calc(30%);
            display: flex;
            justify-content: start;
            align-items: center;
        }

        .input-allperiod-box {
            border-top-right-radius: 1px;
            border-top-left-radius: 1px;
            border: 1px solid #EEEEEE;
            border-top-right-radius: 7px;
            border-bottom-right-radius: 7px;
            overflow: hidden;
            width: calc(70%);
        }

        .icon-input-allperiod {
            background-color: inherit;
            display: flex;
            justify-content: center;
            align-items: center;
            padding-right: 12px;
        }

        .button-add-new{
            width: 90%;
        }

        .button-custom-action {
            width: 10%;
            border-radius: 5px;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid #006462;
        }

        .button-custom-action svg {
            color: black;
        }
    }
}

.select-table-component {
    .ui-dropdown-menu {
        width: auto !important;
    }

    .ui-select-multiple .ui-select-container {
        border-radius: 7px !important;
        border: 1px solid #e0e2eb !important;
    }

    .ui-select-match {
        border: none;
        outline: none;
        box-shadow: none;
    }

    .ui-select-match-text {
        text-align: left;
    }

    .ui-select-match-text {
        width: 95%;
        overflow: hidden;
        text-overflow: ellipsis;
        padding-right: 18px;
        display: block;
    }

    .ui-select-toggle>.btn.btn-link {
        margin-right: 9px;
        top: 5px;
        position: absolute;
        right: 9px;
    }

    .ui-select-match.btn-default-focus {
        box-shadow: none;
        border: none;
    }

    .ui-select-toggle>.caret {
        margin-top: -3px !important;
    }

    .ui-select-container input,
    .ui-select-container .btn-default {
        background-color: white !important;
        /* width: 140px !important; */
        width: 100% !important;
        padding: 2px !important;
        height: 100% !important;
        text-align: center;
    }

    /* .ui-select-choices-row > span {
        text-align: center !important;
    } */

    .ui-select-toggle.btn {
        background-color: white;
        border: none;
        outline: none;
        box-shadow: none;
    }

    .ui-select-search:focus {
        border: none;
        outline: none;
        box-shadow: none;
    }
}
/* === js/components/tableComponentV2/index.css === */
/*
 * tableComponentV2 — styles
 *
 * The root element carries both "tableComponent" (v1) and "tableComponentV2"
 * so all existing v1 CSS rules apply automatically. This file only adds
 * overrides or fixes specific to v2.
 */
.tableComponentV2 {
	.table-responsive {
		overflow-x: auto;
		overflow-y: visible;
	}

	table.table-style {
		overflow: visible !important;
		border-radius: 0 !important;
	}

	table.table-style thead tr:first-child th:first-child {
		border-top-left-radius: 10px;
	}

	table.table-style thead tr:first-child th:last-child {
		border-top-right-radius: 10px;
	}

	table.table-style tbody tr:last-child td:first-child {
		border-bottom-left-radius: 10px;
	}

	table.table-style tbody tr:last-child td:last-child {
		border-bottom-right-radius: 10px;
	}

	.header-filter td {
		padding-bottom: 10px;
	}

	.header-filter .ts-wrapper .ts-control {
		border: none;
		font-size: 11px;
	}

	.header-filter .ts-wrapper.focus .ts-control {
		box-shadow: none;
	}

	.filter-enum-wrap .ts-wrapper {
		width: 100% !important;
	}

	.filter-enum-wrap .ts-wrapper .ts-control {
		border-radius: 6px;
	}

	.select-table-component {
		.ui-select-search.form-control {
			width: 100%;
			height: 32px;
			border-radius: 7px !important;
			background-color: white;
			padding: 4px;
			outline: none;
			box-shadow: none;
			border: none;
		}

		.dropdown-menu {
			min-width: 100% !important;
			top: 120% !important;
		}

		.ui-select-choices-row.active > span {
			background-color: #006462 !important;
			color: white;
		}
	}

	.dropdown-item.active, .dropdown-item:active {
		background-color: #006462 !important;
		color: white !important;
	}

	.filterTable .allperiod-box {
		background-color: inherit;
		color: #1f1f1f;
		border: 1px solid #b2b2b2;
		border-top-left-radius: 7px;
		border-bottom-left-radius: 7px;
        border-right: 0;
		padding: 7px 12px;
		gap: 5px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.filterTable .input-allperiod-box {
		border-top-right-radius: 1px;
		border-top-left-radius: 1px;
		border: 1px solid #b2b2b2;
		border-top-right-radius: 7px;
		border-bottom-right-radius: 7px;
		overflow: hidden;
	}

	.filterTable .icon-input-allperiod {
		background-color: inherit;
		display: flex;
		justify-content: center;
		align-items: center;
		padding-right: 12px;
	}

	.button-flatpickr {
        height: 32px;
        border-radius: 0 7px 7px 0;
        background-color: white;
        color: #f14950;
		font-weight: bold;
    }
}

/* === js/components/notifications/index.css === */
notifications {
    border: none !important;
    box-shadow: 0px 6px 19px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 6px 19px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 6px 19px 0px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.notifications {
    width: 100%;
    height: 100%;

    header {
        cursor: pointer;
        padding: 16px;
        padding-bottom: 12px;
        font-size: 16px;
        font-weight: 600;

        &.back-button::before {
            content: "\f104";
            display: inline-block;
            font: normal normal normal 14px/1 FontAwesome;
            text-rendering: auto;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            margin-left: 10px;
            font-size: 20px;
            margin-right: 20px;
        }
    }

    .tabs-titles {
        width: 100%;
        display: flex;
        grid-template-columns: 1fr 1fr;
        border-bottom: 1px solid #e0e2eb;

        p {
            flex: 1 1 0px;
            text-align: center;
            padding-top: 8px;
            padding-bottom: 8px;
            position: relative;
            cursor: pointer;
            font-size: 13px;
            margin-bottom: 0;

            &:hover {
                background-color: #e6f0ef;
            }

            &::after {
                content: "";
                position: absolute;
                display: block;
                height: 2px;
                bottom: 0;
                width: 0;
                left: 50%;
                transform: translateX(-50%);
                background-color: #006462;
                transition: width 0.2s ease-in-out;
            }

            &.active {
                font-weight: 600;
                &::after {
                    width: 80%;
                }
            }
        }
    }

    .rows {
        overflow-y: auto;
        overflow-x: hidden;
        height: 100%;

        .include > div {
            padding: 12px 16px;
            display: flex;
            flex-direction: column;
            gap: 4px;
            border-bottom: 1px solid #eff0f5;
            transition: box-shadow 0.3s ease-in-out;

            &.uncheck-colored {
                background-color: #e6f0ef;
            }

            span {
                line-height: 16px;
            }

            .check-hover {
                display: none;
            }

            .check-unhovered {
                display: block;
                opacity: 0;
            }

            &:hover {
                box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.1);
                -webkit-box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.1);
                -moz-box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.1);

                .check-hover {
                    display: block;
                }

                .check-unhovered {
                    display: none;
                }
            }

            .row-title {
                color: #1f1f1f;
                font-size: 13px;
                font-weight: 500;
            }

            .row-description {
                display: flex;
                span {
                    font-size: 13px;
                    font-weight: 400;
                    color: #3e3f44;
                }
            }

            .row-meta {
                font-size: 10px;
                font-weight: 400;
                color: #6d6f78;
                margin-top: 2px;
            }
        }
    }
}
