.dashboard_container_breadcrumb {
    font-weight: 400;
    font-size: 14px;
    background-color: #123171;
    height: 62.5px;
    display: flex;
    align-items: center;
}

.dashboard_container_breadcrumb_wrapper {
    max-width: 1250px;
    margin: 0 auto;
    width: 100%;
}

.dashboard_breadcrumb_title {
    font-weight: 700;
    font-size: 18px;
}

.dashboard_breadcrumb_gray, .dashboard_breadcrumb_gray a {
    color: #FFFFFF80 !important;
}

.dashboard_breadcrumb_white, .dashboard_breadcrumb_white a {
    color: #FFFFFF !important;
}

.dashboard_container_detail {
    background-color: #F4F6FA;
    display: flex;
    align-items: center;
}

.dashboard_container_detail_wrapper {
    max-width: 1250px;
    padding: 40px 0px;
    margin: 0 auto;
    width: 100%;
}

.dashboard_main_card_category {
    display: flex;
    justify-content: space-between;
    /* grid-template-columns: repeat(3, 1fr); */
    /* gap: 24px; */
}

.dashboard_card_category {
    width: 396px;
    height: 315px;
    padding: 35px;
    border: 1px solid #DDDDDD;
    border-radius: 20px;
    background: #FFFFFF;
    position: relative;
}

.dashboard_card_category_content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.dashboard_card_summary_content{

}

.dashboard_card_category_title {
    font-weight: 700;
    font-size: 20px;
    color: #626262;
}

.dashboard_card_category_content_wrapper {
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.dashboard_card_category_main_value {
    font-weight: 700;
    font-size: 58px;
    background: linear-gradient(180deg, #0173F1 0%, #012CBB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dashboard_card_category_unit {
    font-weight: 500;
    font-size: 15px;
    color: #321F0E;
}

.dashboard_card_category_button {
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-weight: 400;
    font-size: 12px;
    color: #0264E5;
    width: 128px;
    height: 34px;
    border-radius: 50px;
    border: 1px solid #0264E51A;
    background-color: #F3F9FB;
    padding: 0 15px;
    cursor: pointer;
}

.dashboard_card_category_button_text {
    flex: 1;
    text-align: left;
}

.dashboard_card_category_button:hover .dashboard_card_category_button_text,
.dashboard_card_category_button:hover .dashboard_card_category_button_arrow {
    color: #ffffff;
}

.dashboard_card_category_button_text,
.dashboard_card_category_button_arrow {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.dashboard_card_category_button:hover {
    background-color: #0264E5;
}

.dashboard_card_category_left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
    width: 50%;
}

.dashboard_card_category_left_wrapper, .dashboard_card_category_right_wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.dashboard_card_category_right_wrapper {
    width: 160px;
    padding-left: 15px;
}

.dashboard_card_category_right {
    display: flex;
    align-items: center;
}

.dashboard_card_category_icon {
    width: 135px;
    height: 135px;
}

.dashboard_card_category_divider {
    height: 40%;
    border: 1px solid #0280FB;
    margin-top: 5px;
}

.dashboard_card_category_sub_title {
    font-weight: 400;
    font-size: 14px;
    color: #9291A5;
}

.dashboard_card_category_sub_unit {
    font-weight: 500;
    font-size: 16px;
    color: #626262;
}

.dashboard_card_sub_unit_icon {
    width: 16px;
    height: 16px;
}

.dashboard_stadium_icon {
    position: absolute;
    bottom: 0;
    right: 2%;
    margin: 0;
    padding: 0;
    width: 150px;
}

.sport_personnel_icon {
    position: absolute;
    bottom: 0;
    right: 28%;
    margin: 0;
    padding: 0;
    height: 127px;
}

.sportsman_icon {
    position: absolute;
    bottom: 14%;
    right: 5%;
}

.dashboard_main_card_general {
    padding-top: 24px;
    display: flex;
    flex-direction: row;
    gap: 36px;
}

.dashboard_card_general {
    height: 410px;
    padding: 16px 14px;
    border: 1px solid #DDDDDD;
    border-radius: 20px;
    background: #FFFFFF;
    position: relative;
}

.dashboard_one_to_three_width {
    width: 45%;
}

.dashboard_two_to_three_width {
    width: 55%;
}

.dashboard_one_to_two_width {
    width: 50%;
}

.dashboard_full_width {
    width: 100%;
}

.dashboard_card_general_content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
}

.dashboard_card_general_title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.dashboard_card_general_title_wrapper {
    display: flex;
    flex-direction: column;
}

.dashboard_card_general_title_name_gray {
    font-weight: 400;
    font-size: 18px;
    color: #9291A5;
}

.dashboard_card_general_title_name {
    font-weight: 700;
    font-size: 18px;
    color: #1E1B39;
}

.dashboard_card_general_action_buttons {
    display: flex;
    gap: 8px;
}

.dashboard_card_general_button {
    width: 48px;
    height: 36px;
    border-radius: 20px;
    background-color: #F8F8FF;
    margin: 0px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.dashboard_card_general_button:hover {
    background-color: #E0E0F0;
}

.dashboard_card_general_select_wrapper {
    position: relative;
    display: inline-block;
}

.dashboard_card_general_select {
    width: 100px;
    height: 36px;
    border-radius: 20px;
    background-color: #F8F8FF;
    border: none;
    font-weight: 400;
    font-size: 14px;
    color: #615E83;
    box-shadow: none;
    transition: background-color 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
}

.dashboard_card_general_select_custom_arrow {
    position: absolute;
    right: 12px;
    top: 45%;
    transform: translateY(-50%);
    width: 10px;
    height: 5.5px;
    pointer-events: none;
    user-select: none;
}

.dashboard_card_general_select:focus {
    box-shadow: none;
    background-color: #F8F8FF;
}

.dashboard_card_general_select:hover {
    background-color: #E0E0F0;
}

.dashboard_card_general_divider {
    width: 100%;
    border: 0.5px solid #E5E5EF;
    margin: 23px 0px;
}

.dashboard_donut_chart_wrapper {
    width: 100%;
    height: 180px;
}

.dashboard_donut_chart_legend {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding-top: 20px;
}

.dashboard_donut_chart_legend_label {
    font-weight: 400;
    font-size: 14px;
    color: #1E1B39;
}

.dashboard_donut_chart_legend_value {
    font-weight: 600;
    font-size: 20px;
    color: #1E1B39;
}

.percentage_positive {
    font-weight: 500;
    font-size: 14px;
    color: #12B76A;
}

.percentage_negative {
    font-weight: 500;
    font-size: 14px;
    color: #FF0000;
}

.dashboard_area_chart_wrapper {
    width: 100%;
    height: 280px;
}

.dashboard_all_icon {
    width: 42px;
    height: 42px;
}

.dashboard_all_title {
    display: flex;
    align-items: center;
}

.dashboard_all_title_inner {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    border-bottom: 3px solid #DB4444;
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.dashboard_all_title_text {
    font-weight: 700;
    font-size: 24px;
    color: #0B243F;
}

.dashboard_bar_chart_horizontal_wrapper {
    width: 100%;
    height: 270px;
}

.dashboard_all_card_general_data {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 38px;
}

.dashboard_card_general_data {
    width: 284px;
    height: 158px;
    padding: 27px 23px;
    border: 1px solid #DDDDDD;
    border-radius: 20px;
    background: #FFFFFF;
}

.dashboard_card_general_data_title {
    font-weight: 600;
    font-size: 18px;
    color: #0B243F;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dashboard_card_general_data_value {
    font-weight: 700;
    font-size: 48px;
    line-height: 100%;
    background: linear-gradient(180deg, #0173F1 0%, #012CBB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dashboard_card_general_data_unit {
    font-weight: 500;
    font-size: 14px;
    color: #321F0E;
}

.dashboard_all_search_container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 24px;
}

.dashboard_all_search_select {
    width: 310px;
    min-height: 40px !important;
    height: auto !important;
    border-radius: 10px;
    font-weight: 400;
    font-size: 14px;
    color: #615E83;
}

.dashboard_all_search_select:focus {
    box-shadow: none;
    background-color: #FFFFFF;
}

.dashboard_all_search_input_wrapper {
    position: relative;
    display: inline-block;
}

.dashboard_all_search_input_icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    pointer-events: none;
  }

.dashboard_all_search_input {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    background-color: #FFFFFF;
    font-weight: 400;
    font-size: 14px;
    color: #615E83;
    padding-left: 35px;
    border: 1px solid #CBD5E1;
}

.dashboard_bar_chart_vertical_wrapper {
    width: 100%;
    height: 320px;
}

.dashboard_card_sport {
    height: 460px;
    border-radius: 20px 20px 0px 0px;
    border-bottom: none;
}

.dashbord_sport_medal_summary_container_wrapper {
    display: flex;
    flex-direction: column;
}

.dashbord_athlete_personnel_type_summary_header_level, .dashbord_athlete_personnel_type_summary_header_type,
.dashbord_athlete_personnel_type_summary_row_level, .dashbord_athlete_personnel_type_summary_row_type {
    padding: 14px 24px;
}

.dashbord_athlete_personnel_type_summary_header_level, .dashbord_athlete_personnel_type_summary_row_level {
    width: 36%;
}

.dashbord_athlete_personnel_type_summary_header_type, .dashbord_athlete_personnel_type_summary_row_type {
    width: 16%;
}

.dashbord_athlete_personnel_type_summary_row_level {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard_sport_chevron {
    width: auto;
    height: 10px;
    transition: transform 0.3s ease;
}

.dashboard_sport_chevron.rotate {
    transform: rotate(90deg);
}

.dashbord_sport_medal_summary_row_level_tota_unused {
    font-weight: 400;
    font-size: 12px;
    color: #929292;
    padding-left: 8px;
}

.dashbord_sport_medal_summary_empty {
    width: 100%;
    height: 64px;
    color: #1E293B;
    font-size: 14px;
    border: 1px solid #DDDDDD;
    border-top: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px 0px 20px 20px;
}

.dashbord_sport_medal_athlete_wrapper {
    display: none;
    padding: 16px 36px;
    background-color: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-top: none;
    border-bottom: none;

}

.dashbord_sport_medal_athlete_wrapper.active {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dashbord_sport_medal_no_athlete_data {
    width: 100%;
    height: 40px;
    color: #1E293B;
    font-size: 14px;
    border-top: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashbord_sport_medal_summary_row.highlighted {
    background-color: #F8FAFC;
    transition: background-color 0.2s ease;
}

.dashbord_sport_medal_athlete_wrapper.active_last {
    border-bottom: 1px solid #DDDDDD;
    border-radius: 0px 0px 20px 20px;
}

.medal_group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 13px 24px;
    border-radius: 10px;
    border: 0.5px solid #E6E6E6;
    min-height: 48px;
}

.athlete_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
  
.medal_rank {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 18%;
    font-weight: 400;
    font-size: 12px;
    color: #9291A5;
    padding: 0px 10px;
}

.medal_index {
    width: 30%;
}

.medal_year {
    width: 70%;
}

.medal_icon {
    width: 15px;
    height: 20px;
}

.sport_type {
    width: 18%;
    font-weight: 400;
    font-size: 12px;
    color: #1E293B;
    padding: 0px 10px;
}

.event_name {
    width: 36%;
    font-weight: 400;
    font-size: 12px;
    color: #1E293B;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0px 10px;
}

.athlete_info {
    width: 27%;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 300;
    font-size: 12px;
    color: #404D61;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0px 10px;
}

.athlete_img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.medal_group_header_text {
    font-weight: 500 !important;
    font-size: 14px !important;
    color: #1E293B !important;
}

.dashboard_athlete_personnel_card {
    height: 630px;
}

.dashboard_athlete_personnel_card_one_to_three_height {
    height: 35%;
}

.dashboard_athlete_personnel_card_two_to_three_height {
    height: 65%;
}

.dashboard_athlete_personnel_age_row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 5px;
    font-size: 14px;
    font-weight: 400;
    color: #615E83;
}

.dashboard_athlete_personnel_age_bar {
    display: flex;
    height: 6px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 7px;
}

.dashboard_athlete_personnel_age_bar_segment {
    height: 100%;
}

.dashboard_athlete_personnel_age_bar_segment.male {
    background-color: #3A59D1;
}

.dashboard_athlete_personnel_age_bar_segment.female {
    background-color: #7AC6D2;
}

.dashboard_athlete_personnel_age_bar_segment.remaining {
    background-color: #F8F8FF;
}

.dashboard_card_no_content {
    height: 89px;
}

.dashbord_sport_medal_summary_header, .dashbord_sport_medal_summary_row {
    width: 100%;
    height: 64px;
    font-weight: 700;
    font-size: 14px;
    color: #1E293B;
    display: flex;
    justify-content: start;
    align-items: center;
    border: 1px solid #DDDDDD;
    border-top: none;
}

.dashbord_sport_medal_summary_row {
    background: #FFFFFF;
    font-weight: 400;
    cursor: pointer;
}

.dashbord_sport_medal_summary_header {
    background: #F8FAFC;
}

.dashbord_sport_medal_summary_header_level, .dashbord_sport_medal_summary_header_medal,
.dashbord_sport_medal_summary_row_level, .dashbord_sport_medal_summary_row_medal {
    padding: 14px 24px;
}

.dashbord_sport_medal_summary_header_level, .dashbord_sport_medal_summary_row_level {
    width: 52%;
}

.dashbord_sport_medal_summary_row_level {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashbord_sport_medal_summary_header_medal, .dashbord_sport_medal_summary_row_medal {
    width: 12%;
}

.dashboard_sorter_up_down {
    width: 20px;
    height: auto;
}

.dashboard_card_map {
    height: 844px;
    border: 1px solid #DDDDDD;
    border-radius: 20px;
    background: #FFFFFF;
    position: relative;
}

.dashboard_card_map, 
.dashboard_card_map_content {
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: 844px;
}

.dashboard_card_map_content_wrapper {
    padding: 16px 14px;
}

.dashboard_card_map_one_to_three_width {
    width: 34%;
}

.dashboard_card_map_two_to_three_width {
    width: 66%;
}

a.remove, a.icon-remove {
    border: none !important;
    border-left: 1px solid #dee2e6 !important;
}

.dashboard_map_select_province_wrapper {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 400;
    font-size: 14px;
    padding: 6px 20px 0px 0px;
    min-height: 0;
}

.dashboard_map_select_province {
    width: 100%;
    min-height: 57px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    padding: 0px 16px;
    border: 1px solid #CBD5E1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dashboard_map_select_province_name {
    color: #000000D9;
    font-weight: 400;
    transition: font-weight 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dashboard_map_select_province_count {
    background-color: #F8F8FF;
    border-radius: 9999px;
    padding: 3px 9px;
    min-width: 29px;
    text-align: center;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
}

.dashboard_map_select_province.active {
    border-color: #0057FF;
}

.dashboard_map_select_province.active .dashboard_map_select_province_name {
    font-weight: 600;
}

.dashboard_map_select_province.active .dashboard_map_select_province_count {
    background-color: #0057FF;
    color: #FFFFFF;
}

.dashboard_card_map_content_body {
    flex: 1;
    display: flex;
    flex-direction: row;
    min-height: 0;
}

.dashboard_card_map_content_wrapper.dashboard_card_map_one_to_three_width {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    gap: 8px;
}

.dashboard_event_icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
}

.dashboard_calendar_icon {
    width: 14px;
    height: 14px;
}

.dashboard_event_name {
    font-weight: 700;
    font-size: 16px;
    color: #0B243F;    
}

.dashboard_event_date {
    font-weight: 400;
    font-size: 14px;
    color: #131313;
}

.dashboard_all_page_selection_container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: 100%;
    gap: 16px;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    color: #47556980;
    margin-bottom: 35px;
}

.dashboard_all_page_selector {
    padding: 6px 16px;
    border-radius: 10px;
    background-color: #12317117;
    color: #475569;
}

.dashboard_bar_chart_horizontal_event_wrapper {
    width: 100%;
}

.dashboard_card_medal {
    height: 315px;
    width: 815px;
    padding: 24px;
    border: 1px solid #DDDDDD;
    border-radius: 20px;
    background: #FFFFFF;
    position: relative;
}

.dashboard_card_category_medal_title {
    font-weight: 600;
    font-size: 18px;
    color: #0B243F;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dashboard_card_category_medal_main_value {
    font-weight: 700;
    font-size: 48px;
    background: linear-gradient(180deg, #0173F1 0%, #012CBB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 150%;
}

.dashboard_card_category_medal_unit {
    font-weight: 500;
    font-size: 14px;
    color: #321F0E;
    line-height: 100%;
}

.medal_category_icon {
    position: absolute;
    bottom: 7%;
    right: 5%;
    margin: 0;
    padding: 0;
    height: 117px;
    width: 117px;
}

.dashboard_card_category_medal_button_wrapper {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 20%;
    z-index: 1;
}

.dashboard_card_category_medal_divider {
    height: 100%;
    border: 0.5px solid #E5E5EF;
}

.dashboard_button_group {
    display: flex;
    width: 45%;
    height: 40px;
    font-size: 14px;
    color: #475569;
    background-color: white;
}
  
.dashborad_toggle_button {
    flex: 1;
    background-color: transparent;
    border: 1px solid #CBD5E1;
    border-right: none;
    border-radius: 0;
    cursor: pointer;
    font-weight: 400;
    color: #475569;
    transition: background-color 0.3s, color 0.3s, border 0.3s;
    height: 100%;
    padding: 0;
    margin: 0;
    z-index: 0;
}
  
.dashborad_toggle_button:last-child {
    border-right: 1px solid #CBD5E1;
}
  
.dashborad_toggle_button.selected {
    background-color: #123171;
    color: white;
    border: 1px solid #123171;
    z-index: 1;
}
  
  /* Border-radius for selected buttons */
.dashborad_toggle_button:first-child, .dashborad_toggle_button.selected:first-child {
    border-radius: 6px 0 0 6px;
}
  
.dashborad_toggle_button:last-child, .dashborad_toggle_button.selected:last-child {
    border-radius: 0 6px 6px 0;
}

.dashboard_card_category_medal_wrapper {
    display: flex;
    gap: 20px;
}

.dashboard_card_category_medal_content_wrapper {
    width: 25%;
}

.dashboard_card_category_medal_with_divider {
    width: 90%;
}

.dashboard_ellipsis_wrapper {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dashboard_table_container {
    background-color: #FFFFFF;
    border: 1px solid #CBD5E1;
    border-radius: 20px;
}

.dashboard_competition_table {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    overflow: hidden;
    border-radius: 20px 20px 0px 0px;
    margin-bottom: 0px;
}

.dashboard_competition_table th {
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    color: #1E293B;
    text-align: center;
}

.dashboard_competition_table td {
    font-weight: 400;
    font-size: 14px;
    color: #475569;
    text-align: center;
}

.dashboard_competition_table th, .dashboard_competition_table td {
    padding: 14px 24px !important;
    position: relative;
    border-bottom: 1px solid #CBD5E1;
}

.dashboard_competition_table thead{
    background-color: #F8FAFC;
}

.dashboard_competition_table thead tr {
    height: 64px;
}

.dashboard_competition_table tbody td {
    height: 72px;
}

.dashboard_competition_table tbody tr:last-child {
    border-bottom: none;
}

.dashboard_competition_table th:nth-child(1),
.dashboard_competition_table td:nth-child(1) {
    width: 5%;
}

.dashboard_competition_table th:nth-child(2),
.dashboard_competition_table td:nth-child(2) {
    width: 11%;
}

.dashboard_competition_table th:nth-child(3),
.dashboard_competition_table td:nth-child(3) {
    width: 58%;
    text-align: left;
}

.dashboard_competition_table th:nth-child(4),
.dashboard_competition_table td:nth-child(4) {
    width: 21%;
    text-align: left;
}

.dashboard_competition_table th:nth-child(5),
.dashboard_competition_table td:nth-child(5) {
    width: 5%;
}

.dashboard_table_ellipsis {
    display: block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dashboard_competition_info_icon {
    width: 28px;
    height: 28px;
}

.dashboard_table_pagination {
    height: 64px;
    font-weight: 400;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px
}

.dashboard_pagination_buttons_wrapper {
    display: flex;
    gap: 5px;
}

.dashboard_pagination_btn {
    margin: 0px;
    background: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    padding: 0px 15px;
    border-radius: 9999px;
}

.dashboard_pagination_btn:hover:not(:disabled) {
    background-color: #E5EEFF;
}

.dashboard_pagination_btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.dashboard_pagination_btn.active {
    background-color: #E5EEFF;
    color: #123171;
}

.dashboard_pagination_ellipsis {
    padding: 7px 8px 5px 8px;
    color: #475569;
}

.dashboard_pagination_showing {
    display: inline-block;
    color: #475569;
    vertical-align: middle;
    font-weight: 400;
    font-size: 14px;
}

.dashboard_pagination_left_icon , .dashboard_pagination_right_icon {
    width: 20px;
    height: 20px;
}

.dashboard_competition_event_card {
    height: 116px;
    border-radius: 10px;
    padding: 0px 16px;
    background-color: #FFFFFF;
}

.dashboard_competition_event_detail {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    font-size: 14px;
    color: #0B243F;
}

.dashboard_competition_event_detail_title {
    width: 10%;
}

.dashboard_competition_event_detail_text {
    width: 90%;
    font-weight: 400;
}

.dashboard_event_table {
    width: 100%;
    overflow: hidden;
    border-radius: 20px 20px 0px 0px;
    margin-bottom: 0px;

    display: block;
    overflow-x: auto;
    white-space: nowrap;
    border-collapse: collapse;
    table-layout: auto;
}

.dashboard_event_table th {
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    color: #1E293B;
    text-align: center;
}

.dashboard_event_table td {
    font-weight: 400;
    font-size: 14px;
    color: #475569;
    text-align: center;
}

.dashboard_event_table th, .dashboard_event_table td {
    padding: 14px 24px !important;
    position: relative;
    border-bottom: 1px solid #CBD5E1;
}

.dashboard_event_table thead{
    background-color: #F8FAFC;
}

.dashboard_event_table thead tr {
    height: 64px;
}

.dashboard_event_table tbody td {
    height: 72px;
}

.dashboard_event_table tbody tr:last-child {
    border-bottom: none;
}

.dashboard_event_table th:nth-child(1),
.dashboard_event_table td:nth-child(1) {
    width: 6%;
}

.dashboard_event_table th:nth-child(2),
.dashboard_event_table td:nth-child(2) {
    width: 22%;
    text-align: left;
    min-width: 150px;
    max-width: 200px;
}

.dashboard_event_table th:nth-child(3),
.dashboard_event_table td:nth-child(3) {
    width: 15%;
    text-align: left;
    min-width: 150px;
    max-width: 190px;
}

.dashboard_event_table th:nth-child(4),
.dashboard_event_table td:nth-child(4) {
    width: 14%;
    text-align: left;
    min-width: 165px;
    max-width: 180px;
}

.dashboard_event_table th:nth-child(5),
.dashboard_event_table td:nth-child(5) {
    width: 8%;
    min-width: 100px;
    max-width: 140px;
}

.dashboard_event_table th:nth-child(6),
.dashboard_event_table td:nth-child(6) {
    width: 8%;
    max-width: 300px;
}

.dashboard_event_table th:nth-child(7),
.dashboard_event_table td:nth-child(7) {
    width: 15%;
    text-align: left;
    min-width: 140px;
    max-width: 170px;
}

.dashboard_event_table th:nth-child(8),
.dashboard_event_table td:nth-child(8) {
    width: 12%;
    text-align: left;
    min-width: 150px;
    max-width: 200px;
}

.dashboard_location_icon {
    width: 19px;
    height: 19px;
}

.dashboard_stadium_location {
    font-weight: 400;
    font-size: 14px;
    color: #6A737D;
}

.active_level_text {
    font-weight: 500;
}

.dashboard_satisfaction_assessment_card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.dashboard_satisfaction_assessment_summary_card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.dashboard_satisfaction_assessment_card_general_data {
    width: 288px;
    height: 159px;
    padding: 16px;
    border-radius: 10px;
    background: #F4F6FA;
}

.dashboard_satisfaction_assessment_card_summary_data{
    width: 389px;
    height: 159px;
    padding: 16px;
    border-radius: 10px;
    background: #F4F6FA;
}

.dashboard_satisfaction_assessment_icon {
    width: 52px;
    height: 52px;
}

.dashboard_satisfaction_assessment_card_title {
    font-weight: 400;
    font-size: 15px;
    color: #0B243F;
}

.dashboard_satisfaction_assessment_card_percentage {
    font-weight: 500;
    font-size: 18px;
    color: #0B243F;
}

.dashboard_satisfaction_assessment_title {
    font-weight: 500;
    font-size: 20px;
    color: #0B243F;
    padding-top: 30px;
}

.dashboard_satisfaction_assessment_content_wrapper {
    display: flex;
    flex-direction: column;
}

.dashboard_satisfaction_assessment_table_wrapper{
    margin: 20px 0px;
}

.dashboard_satisfaction_assessment_table_detail th{
    color: var(--Gray-80, #1E293B);
    font-size: 14px;
    font-weight: 700;

    text-align: center;

    border-bottom: 1px solid var(--Gray-30, #CBD5E1);
    background: var(--Gray-5, #F8FAFC);

    padding: 24px 24px;
}

.dashboard_satisfaction_assessment_table_detail td{
    color: var(--Gray-80, #475569);
    font-size: 14px;
    font-weight: 500;

    text-align: center;

    border-bottom: 1px solid var(--Gray-30, #CBD5E1);

    padding: 24px 24px;
}

.dashboard_satisfaction_assessment_table_description{
    color: #475569;
    font-size: 14px;
    font-weight: 400;
}

.dashboard_satisfaction_assessment_column_left{
    text-align: left !important;
    padding-left: 20px !important;
}

.assessment_maximum_tag{
    font-weight: 600;
    color: #02861E;
}

.assessment_high_tag{
    font-weight: 600;
    color: #00EA24;
}

.assessment_medium_tag{
    font-weight: 600;
    color: #0182FD;
}

.assessment_low_tag{
    font-weight: 600;
    color: #A5A5A5;
}

.assessment_minimum_tag{
    font-weight: 600;
    color: #242424;
}

.dashboard_satisfaction_assessment_title_chart {
    font-weight: 500;
    font-size: 16px;
    color: #1E1B39;
}

.dashboard_satisfaction_assessment_chart_wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.dashboard_satisfaction_assessment_bar_chart_horizontal_wrapper {
    width: 90%;
    height: 270px;
}

.dashboard_satisfaction_assessment_chart_text_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 10%;
    padding: 0px 15px;
}

.dashboard_satisfaction_assessment_chart_text_value {
    font-weight: 500;
    font-size: 60px;
    color: #615E83;
    line-height: 100%;
}

.dashboard_satisfaction_assessment_chart_text_unit {
    font-weight: 400;
    font-size: 18px;
    color: #9291A5;
}

.province_marker_wrapper {
    position: relative;
    width: 30px;
    transform: translate(0%, -50%);
    pointer-events: auto;
}

.province_marker_pin {
    width: 100%;
    height: auto;
    display: block;
}

.province_marker_badge {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: black;
    font-size: 12px;
    border-radius: 9999px;
    padding: 1px 4px;
    min-width: 22px;
    text-align: center;
    z-index: 1;
}

.mapboxgl-ctrl-top-left .mapboxgl-ctrl, .maplibregl-ctrl-top-left .maplibregl-ctrl button,
.mapboxgl-ctrl-top-right .mapboxgl-ctrl, .maplibregl-ctrl-top-right .maplibregl-ctrl button {
    margin: 0px;
}

.dashboard_donut_chart_gender_wrapper {
    max-width: 380px; 
    padding-left: 30px; 
    height: 70px; 
    display: flex; 
    flex-direction: row; 
    gap: 20px; 
    justify-content: space-around;
}

.dashboard_donut_gender_chart_legend {
    padding-top: 0px; 
    gap: 50px; 
    align-items: center;
}

.dashboard_card_category_recent_competition_wrapper {
    display: flex;
    flex-direction: column;
    width: 78%;
    gap: 10px;
}

.dashboard_card_category_recent_competition_titile {
    font-weight: 700;
    font-size: 14px;
    color: #9291A5;
}

.dashboard_card_category_recent_competition_detail {
    display: flex;
    gap: 16px;
    height: 48px;
    border: 0.5px solid #E6E6E6;
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 13px 24px;
}

.dashboard_card_category_recent_competition_detail_amount {
    font-weight: 700;
    font-size: 12px;
    color: #9291A5;
    min-width: 55px;
}

.dashboard_card_category_recent_competition_detail_name {
    font-weight: 700;
    font-size: 12px;
    color: #1E293B;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dashboard_card_althete_width {
    width: 50%;
}

.dashboard_sport_athlete_name {
    font-weight: 400;
    font-size: 12px;
    color: #1E293B;
}

.dashbord_sport_medal_summary_rows_wrapper {
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    max-height: 300px;
}

.dashbord_sport_medal_summary_rows_scrollable {
    max-height: 300px;
    overflow-y: auto;
}

.dashboard_map_select_wrapper {
    position: relative;
    display: flex; 
    flex-direction: row; 
    gap: 5px;
}

@media (max-width: 1280px){
    .dashboard_container_breadcrumb_wrapper {
        margin: 0 25px;
    }
    
    .dashboard_container_detail_wrapper {
        margin: 0 25px;
    }

    .dashboard_main_card_category {
        /* grid-template-columns: repeat(1, 0fr); */
        justify-content: center;
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .dashboard_main_card_general {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: 90%;
        margin: 0 auto;
    }
    
    .dashboard_one_to_three_width {
        width: 100%;
    }

    .dashboard_two_to_three_width {
        width: 100%;
    }

    .dashboard_card_general {
        height: 100%;
    }

    .dashbord_sport_medal_summary_container {
        width: 90%;
        margin: 0 auto;
    }
    
    .dashboard_button_group {
        width: 40%;
    }

    .dashboard_card_medal {
        width: 100%;
    }

    .dashboard_all_card_general_data {
        grid-template-columns: repeat(3, 0fr);
        justify-content: center;
        gap: 24px;
    }

    .dashbord_sport_medal_summary_container_wrapper {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        border-collapse: collapse;
    }

    .dashbord_sport_medal_summary_inner {
        display: inline-block;
        min-width: 1150px;
        border-collapse: collapse;
    }

    .dashboard_one_to_two_width {
        width: 100%;
    }

    .dashboard_donut_chart_gender_wrapper {
        max-width: 700px;
    }

    .dashboard_athlete_personnel_type_each_sport_summary_container {
        width: 90%;
        margin: 0 auto;
    }
    
    .dashboard_competition_table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        border-collapse: collapse;
        table-layout: auto;
    }

    .dashboard_competition_table th:nth-child(1),
    .dashboard_competition_table td:nth-child(1) {
        min-width: 60px;
    }

    .dashboard_competition_table th:nth-child(2),
    .dashboard_competition_table td:nth-child(2) {
        min-width: 130px;
    }

    .dashboard_competition_table th:nth-child(3),
    .dashboard_competition_table td:nth-child(3) {
        min-width: 400px;
    }

    .dashboard_competition_table th:nth-child(5),
    .dashboard_competition_table td:nth-child(5) {
        min-width: 80px;
    }

    .dashboard_table_pagination {
        height: 90px;
        flex-direction: column;
        gap: 5px;
    }

    .dashboard_map_select_wrapper {
        flex-direction: column; 
    }

    .dashboard_map_select {
        width: 100% !important;
    }

    .dashboard_map_select_province_wrapper {
        padding: 6px 0px 0px 0px;
    }
}

@media (max-width: 1024px){
    .dashboard_donut_chart_gender_wrapper {
        max-width: 500px;
    }

    .dashbord_athlete_personnel_medal_summary_inner {
        display: inline-block;
        min-width: 900px;
        border-collapse: collapse;
    }

    .dashboard_all_card_general_data {
        grid-template-columns: repeat(2, 0fr);
    }
}

@media (max-width: 900px){
    .dashboard_button_group {
        width: 50%;
    }

    .dashboard_card_category_medal_wrapper {
        gap: 10px;
    }

    .dashboard_donut_chart_gender_wrapper {
        max-width: 500px;
    }
}

@media (max-width: 820px){
    .dashboard_donut_chart_gender_wrapper {
        max-width: 400px;
    }

    .dashboard_card_althete_width {
        width: 60%;
    }
}

@media (max-width: 680px){
    .dashboard_card_general_title_name_gray, .dashboard_card_general_title_name {
        font-size: 14px;
    }

    .dashboard_button_group {
        width: 80%;
    }

    /* .dashboard_card_category_medal_title {
        font-size: 14px;
    }
    
    .dashboard_card_category_medal_main_value {
        font-size: 36px;
    }
    
    .dashboard_card_category_medal_unit {
        font-size: 10px;
    } */
    
    .medal_category_icon {
        bottom: 5%;
        right: 2%;
        height: 100px !important;
        width: 100px !important;
    }

    .sportsman_icon {
        height: 100px !important;
        width: 100px !important;
    }
    
    .dashboard_card_category_medal_button_wrapper {
        width: 25%;
    }

    .dashboard_all_card_general_data {
        grid-template-columns: repeat(1, 0fr);
    }

    .dashboard_donut_chart_gender_wrapper {
        max-width: 250px;
    }
}

@media (max-width: 480px){
    .dashboard_main_card_general {
        width: 100%;
        margin: 0 auto;
        max-width: 380px;
    }
    
    .dashboard_card_category {
        width: 370px;
        height: 294px;
    }
    
    .dashboard_card_category_icon {
        width: 110px;
        height: 110px;
    }
    
    .sport_personnel_icon {
        right: 33%;
        height: 103px;
    }

    .dashboard_donut_chart_legend {
        flex-direction: column;
        align-items: start;
        margin: 0 auto;
    }

    .dashboard_button_group {
        width: 100%;
    }
    
    .dashbord_sport_medal_summary_container {
        width: 100%;
        margin: 0 auto;
        max-width: 380px;
    }

    .dashboard_donut_gender_chart_legend {
        gap: 0px;
    }
    
    .dashboard_athlete_personnel_type_each_sport_summary_container {
        width: 100%;
        margin: 0 auto;
        max-width: 380px;
    }

    .dashboard_card_althete_moblie {
        display: none;
    }
}

@media (max-width: 380px) {
    .dashboard_main_card_general {
        max-width: 340px;
    }

    .dashboard_card_category {
        width: 330px;
        height: 263px;
    }
    
    .dashboard_card_category_title {
        font-size: 16px;
    }
    
    .dashboard_card_category_main_value {
        font-size: 45px;
    }

    .dashboard_card_category_unit {
        font-size: 13px;
    }

    .dashboard_card_category_sub_title {
        font-size: 12px;
    }
    
    .dashboard_card_category_sub_unit {
        font-size: 13px;
    }

    .dashboard_card_sub_unit_icon {
        width: 14px;
        height: 14px;
    }

    .sport_personnel_icon {
        right: 28%;
    }

    .dashboard_all_title_text {
        font-size: 18px;
    }
    
    .dashboard_all_icon {
        width: 35px;
        height: 35px;
    }
    
    .dashboard_all_title_inner {
        gap: 10px;
    }

    .dashboard_donut_chart_gender_wrapper {
        max-width: 250px;
    }

    .dashbord_sport_medal_summary_container {
        max-width: 340px;
    }

    .dashboard_athlete_personnel_type_each_sport_summary_container {
        max-width: 340px;
    }
}