:root {
	--gray-base: #202430;
	--gray-shade-60: #13161D;
	--gray-tint-30: #63666E;
	--gray-tint-50: #909298;
	--gray-tint-80: #D2D3D6;
	--gray-alpha-80: rgb(32 36 48 / .8); 
	--gray-tint-90: #E9E9EA;
	--main-bg_dark: #333;
	--color-hover: #0e4bf1;
	--user-info-1: hsla(174, 62%, 80%, 0.5);
	--user-info-2: hsla(160, 3%, 18%, 0.5);
	--main-bg_light: #e4e3e3;
	--white-base: #fff;
	--primary-base: #358FE6;
	--extras-sun: #FFD371;
	--extras-moon: #7190FF;
	--extras-black-alpha-64: rgb(0 0 0 / .64);
	--extras-white-alpha-64: rgb(255 255 255 / .64);
}
:root[data-theme="dark"] {
	--main-header-bg: var(--gray-shade-60);
	--top-bar-icon-fill: var(--gray-tint-80);
	--sidebar-bg: var(--gray-base);
	--main-bg: var(--main-bg_dark);
	--user-info: var(--user-info-2);
	--color-card: #ffffff;
	--color-card-dl: #daeb40;
    --tieu-de: var(--gray-shade-60);
	--input-color: var(--gray-base);
	--input-color-text: var(--sidebar-link-color);
	--color-border: var(--gray-shade-60);
	--sidebar-icon-fill: var(--gray-tint-50);
	--sidebar-icon-active-fill: var(--white-base);
	--sidebar-link-color: var(--gray-tint-50);
	--sidebar-link-active-color: var(--white-base);
	--sidebar-menu-heading-color: var(--gray-tint-30);
	--theme-switcher-bg: var(--gray-shade-60);
	--theme-switcher-indicator: var(--extras-moon);
	--theme-switcher-indicator-pos: 3.25rem;
	--sun-icon-fill: var(--gray-tint-30);
	--moon-icon-fill: var(--extras-white-alpha-64);
	--main-header-link-color: var(--gray-tint-80);
}
:root[data-theme="light"] {
	--main-header-bg: linear-gradient(90deg, hsl(174, 62%, 80%) 0%, hsl(174, 62%, 60%) 100%);
	--top-bar-icon-fill: var(--gray-base);
	--sidebar-bg: #fafafa;
	--main-bg: #F2F2F2;
	--user-info: var(--user-info-1);
	--color-card: #ee2121;
	--color-card-dl: #00f829;
    --tieu-de: hsl(174, 62%, 90%);
	--input-color: var(--white-base);
	--input-color-text: var(--gray-shade-60);
	--color-border: var(--gray-tint-50);
	--sidebar-icon-fill: var(--gray-tint-50);
	--sidebar-icon-active-fill: var(--gray-base);
	--sidebar-link-color: var(--gray-tint-50);
	--sidebar-link-active-color: blue;
	--sidebar-menu-heading-color: var(--gray-tint-50);
	--theme-switcher-bg: var(--gray-tint-80);
	--theme-switcher-indicator: var(--extras-sun);
	--theme-switcher-indicator-pos: .25rem;
	--sun-icon-fill: var(--extras-black-alpha-64);
	--moon-icon-fill: var(--gray-tint-50);
	--main-header-link-color: var(--gray-base);
}

::-webkit-scrollbar {
    width: 1px; 
    height: 10px; 
}


::-webkit-scrollbar-track {
    background-color: #f1f1f1; 
    border-radius: 10px;
}


::-webkit-scrollbar-thumb {
    background-color: #888; 
    border-radius: 10px;
}


::-webkit-scrollbar-thumb:hover {
    background-color: #555; 
}
input[type=number]::-webkit-inner-spin-button {
    width: 10px; 
    height: 20px;
	color: var(--sidebar-bg);
}

html {
	font-size: 100%;
	line-height: 1.3;
}
body {
	font-family: 'Lexend', sans-serif;
	color: var(--gray-base);
	padding-top: 60px;
}
#main-header {
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    background: var(--main-header-bg); 
    padding: .5rem 1.5rem;
    transition: background .4s ease-in-out; 
    z-index: 1000; 
}
#main-header nav,
#main-header ul,
#main-header a {
    display: flex;
    align-items: center;
}
#main-header nav {
    justify-content: space-between;
}
#main-header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}
#main-header svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: var(--top-bar-icon-fill);
    transition: fill .4s ease-in-out;
}
#main-header__sidebar-toggle {
    appearance: none;
    background-color: transparent;
    border: none;
}
#toggle-icon-close,
body.sidebar-open #toggle-icon-menu {
    display: none;
}
body.sidebar-open #toggle-icon-close {
    display: block;
}
#main-header__logo,
#main-header a span {
    display: none;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
	background: var(--user-info);
	border: 2px solid hsl(174, 62%, 60%);
	padding: 10px;
	border-radius: 15px;
}
.contact-info {
    text-align: center;
    padding: 20px;
    background: #f8f8f8;
    border-top: 1px solid #ddd;
}
.contact-info a {
    color: #007bff;
    text-decoration: none;
}


.user-info__text {
    display: flex;
    flex-direction: column;
    text-align: center; 
}

.user-info__name {
    font-weight: bold;
    color: var(--sidebar-link-color);
}

.user-info__role {
    font-size: 0.875rem; 
    color: var(--sidebar-link-color-secondary);
}


.user-info svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: var(--top-bar-icon-fill);
    transition: fill 0.4s ease-in-out;
}

#main {
	position: relative;
}
#sidebar {
	background-color: var(--sidebar-bg);
	padding: 1.5rem 0 1.5rem 1.5rem;
	position: fixed;
	top: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	min-height: 100%;
	align-items: flex-start;
	transform: translate3d(-100%, 0, 0);
	transition: transform .4s ease-in-out, background-color .4s ease-in-out;
	overflow-y: auto; 
	max-height: 100vh; 
    z-index: 100;
}

#sidebar svg {
	width: 1.25rem;
	height: 1.25rem;
	fill: var(--sidebar-icon-fill);
	transition: fill .4s ease-in-out;
}
#sidebar__collapse {
	display: none;
}
#sidebar__nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
#sidebar__nav ul a {
	display: flex;
	align-items: center;
	padding: .5rem 0;
	gap: .75rem;
	text-decoration: none;
	color: var(--sidebar-link-color);
	padding-right: 1.5rem;
	transition: color .3s ease-in-out;
	overflow-y: auto;
}
#sidebar__nav ul a i {
	flex-basis: 30px; 
	text-align: center; 
	font-size: 1.25rem; 
}

#sidebar__nav ul a span {
	flex: 1; 
	font-size: 1rem; 
	text-align: left;
}
#sidebar__nav ul a.active {
	color: var(--sidebar-link-active-color);
	font-weight: 600;
	list-style: square;
}

#sidebar__nav ul a.active svg {
	fill: var(--sidebar-icon-active-fill);
}
#sidebar__nav ul a:hover {
	color: var(--sidebar-link-active-color);
}
#sidebar__nav ul a:hover svg {
	fill: var(--sidebar-icon-active-fill);
}
.menu-heading {
	color: var(--sidebar-menu-heading-color);
	font-size: 81.25%;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	padding: 1rem 0 .2rem 0;
}
#sidebar__theme-switcher {
	background-color: var(--theme-switcher-bg);
	border-radius: 50px;
	display: flex;
	align-items: center;
	padding: 0.875rem;
	gap: 1.75rem;
	position: relative;
	cursor: pointer;
	transition: background-color .4s ease-in-out;
}
#sidebar__theme-switcher::before {
	content: '';
	position: absolute;
	width: 2.5rem;
	height: 2.5rem;
	background-color: var(--theme-switcher-indicator);
	border-radius: 50px;
	z-index: 0;
	left: 0;
	transform: translateX(var(--theme-switcher-indicator-pos));
	transition: transform .4s ease-in-out;
}
#sidebar__theme-switcher svg {
	z-index: 1;
}
#sidebar #sidebar__theme-switcher__sun {
	fill: var(--sun-icon-fill);
}
#sidebar #sidebar__theme-switcher__moon {
	fill: var(--moon-icon-fill);
}
#overlay {
	position: absolute;
	inset: 0;
	background-color: var(--gray-alpha-80);
	opacity: 0;
	transition: opacity .4s ease-in-out, visibility .4s ease-in-out;
	overflow: hidden;
	visibility: hidden;
    z-index: 10;
}
body.sidebar-open #overlay {
	opacity: 1;
	visibility: visible;
}
body.sidebar-open #sidebar {
	transform: translate3d(0, 0, 0);
}
#main-content {
    padding: 1.5rem;
    background-color: var(--main-bg);
}
#main-content__container {
    display: flex;
	flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    border: 1px dashed var(--gray-tint-50);
    border-radius: 8px;
    padding: 2rem;
    margin: 0 auto;
}
.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 5rem; 
    width: 100%;
}
.projects__column {
    display: flex;
    flex-direction: column;
}
.projects__column-title {
	display: flex;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0;
	margin-top: 0;
	padding: .5rem;
	border-radius: 1rem 1rem 0 0;
	justify-content: center;
	background: var(--main-header-bg);
	transition: background .4s ease-in-out;
	color: var(--white-base);
}
.projects__content {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    justify-content: center;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    border-top: none; 
    border-radius: 0 0 8px 8px; 
}
.projects__card {
    background-color: var(--sidebar-bg);
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 140px; 
    transition: transform 0.3s ease-in-out;
    margin: 0 auto; 
}
.projects__card-link {
    text-decoration: none;
    color: var(--sidebar-link-color);
    display: block;
    padding: 0.5rem 1rem;
}
.projects__card-header {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
}
.projects__card-icon {
    font-size: 48px;
    color: var(--color-card);
}
.projects__card-icon-dl {
    font-size: 48px;
    color: var(--color-card-dl);
}
.projects__card-title {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
	margin: 0;
}
.projects__card:hover {
    transform: scale(1.05);
}
.task {
    width: 100%;
    background-color: var(--sidebar-bg);
    border-radius: 8px;
	padding-bottom: 1rem;
}
.task__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--main-header-bg);
    padding: 1rem; 
    border-radius: 8px 8px 0 0;
	transition: background .4s ease-in-out;
	color: var(--white-base);
}
.task__title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0; 
    color: var(--sidebar-link-color);
}
.task__link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--sidebar-link-color);
    padding: 0.5rem 1rem;
    background-color: var(--btn-bg); 
    border-radius: 8px;
    transition: background-color 0.3s ease;
}
.task__link:hover {
    background-color: var(--btn-hover-bg); 
}
.task__icon {
    font-size: 1.25rem;
    margin-right: 0.5rem;
}
.task__text {
    font-size: 1rem;
}
.task__list {
    list-style: none;
    padding: 0 .5rem; 
    margin: 0;
}
.task__item {
    width: 100%; 
    border-bottom: 1px solid var(--sidebar-link-color);
    padding: .5rem 0;
}
.task__card {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 0.1fr 0.1fr;
    gap: 15px;
    align-items: center;
}.task__card-content {
    display: flex;
    align-items: center; 
    justify-content: flex-start; 
}.task__badge {
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 0.875rem;
    padding: 5px 10px;
    border-radius: 50px;
    color: #fff;
	min-width: 85px;
    background-color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}.task__label {
    color: var(--sidebar-link-color);
    font-size: 1rem;
    font-weight: 600;
	margin-left: 0.5rem;
}.task__meta-list {
    gap: 10px;
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
}.task__load-more {
    display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 20px;
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	margin-top: 20px;
	transition: background-color 0.3s ease;
	margin-left: auto;
	margin-right: auto;
	display: block;
	text-align: center;
}

.tieu-de {
    background-color: var(--tieu-de);
    border-left: 5px solid hsl(174, 62%, 60%);
    border-right: 5px solid hsl(174, 62%, 60%);
    padding: 10px 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
}
.khung-bo-tron-duoi {
    overflow: hidden;
    background-color: var(--main-bg);
    border-radius: 0 0 15px 15px;
    border: 1px solid #ddd;
    padding-bottom: 1rem;
}

.thong-ke {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
  }
  
  .thong-ke__column {
	background-color: var(--sidebar-bg);
	border-radius: 8px;
	display: flex;
	flex-direction: column;
  }
  .thong-ke__column--left {
	gap: 0;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .thong-ke__column--left, .thong-ke__column--center {
	display: flex;
	flex-direction: column;
	color: var(--sidebar-link-color);
  }
  
  
  .thong-ke__column--center {
	background-color: transparent; 
	display: flex;
	flex-direction: column;
	gap: 15px;
	color: var(--sidebar-link-color);
  }
  
  .thong-ke__row {
	background-color: var(--sidebar-bg);
	padding: 0;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	flex-grow: 1; 
  }
  
  
  .thong-ke__title {
	padding: 1rem;
	border-radius: 8px 8px 0 0;
	margin: 0;
	background-color: var(--main-header-bg);
  }
  
  
  .thong-ke__progress-list {
	list-style: none;
	padding: 1.5rem;
	margin: 0;
  }
  
  .thong-ke__progress-item {
	margin-bottom: 15px;
  }
  
  .thong-ke__progress-label {
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  
  .thong-ke__progress-title {
	font-weight: bold;
	color: #333;
  }
  
  .thong-ke__progress-data {
	font-size: 1.2rem;
	color: var(--onyx);
  }
  
  .thong-ke__progress-bar {
	background-color: #ddd;
	height: 8px;
	border-radius: 4px;
	overflow: hidden;
	margin-top: 8px;
  }
  
  .thong-ke__progress {
	height: 100%;
	border-radius: 4px;
	background-color: var(--color-hover);
	width: 0;
	transition: width 0.5s ease-in-out;
  }
  
  
  .thong-ke__text {
	margin: 1rem 0;
	padding: 1rem;
  }
  
  
  .thong-ke__revenue-list {
	width: 100%;
	list-style: none;
	padding: 1rem;
	margin: 0;
	display: grid;
	grid-template-columns: auto auto;
	gap: 20px;
  }
  
  .thong-ke__revenue-item {
	display: flex;
	align-items: center;
  }
  
  .thong-ke__icon {
	font-size: 24px;
	padding: 8px;
	border-radius: 50%;
	margin-right: 10px;
	background-color: rgba(0, 0, 0, 0.05);
  }
  
  .thong-ke__icon--teal {
	color: #00796b;
  }
  
  .thong-ke__icon--blue {
	color: #1565c0;
  }
  
  .thong-ke__revenue-data {
	font-size: 1.2rem;
	font-weight: bold;
	color: var(--onyx);
  }
  
  .thong-ke__revenue-text {
	color: #666;
	font-size: 0.9rem;
  }
  .hop__title {
    text-align: center;
    color: #1976d2;
    margin: 20px 0;
    font-size: 28px;
}

.hop__wrapper {
    margin: 0 auto;
    padding: 0 20px;
}

.hop__container {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    max-width: 100%;
    overflow-x: hidden;
}

.hop__panel--left,
.hop__panel--right {
    width: 50%;
    padding: 20px;
    border: 1px solid var(--gray-tint-30);
    background-color: var(--sidebar-bg);
    border-radius: 10px;
    box-sizing: border-box;
    max-width: 100%;
}
.hop__panel--right {
	display: flex;
	justify-content: center;
    align-items: center;
}
.hop__form-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.hop__label {
    width: 40%;
    font-weight: bold;
    color: var(--sidebar-link-color);
    font-size: 17px;
}

.hop__input,
.hop__select {
    width: 60%;
    padding: 10px;
    border-radius: 5px;
    background: var(--input-color);
    color: var(--input-color-text);
    border: 1px solid #ddd;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease; 
}

.hop__input:hover,
.hop__select:hover {
    border-color: #1976d2; 
    box-shadow: 0 0 5px rgba(25, 118, 210, 0.3); 
}


.checkbox-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 40%;
    margin-right: 0;
    margin-bottom: 5px;
    white-space: nowrap;
}
.checkbox-select-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 40%;
}
.hop__checkbox {
    border: 1px solid #ccc;
    border-radius: 4px;
}

.hop__checkbox:checked {
    background-color: #1976d2;
    border-color: #1976d2;
}

.hop__label--highlight {
    color: red;
    font-size: 18px;
}

.hop__input--highlight {
    color: red;
    font-weight: 600;
}

.hop__canvas {
    min-width: 350px;
	padding: 1rem;
}

.hop__card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    max-width: 100%;
}

.hop__card {
    position: relative;
    padding: 0 1rem 0 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    color: var(--sidebar-link-color);
    background-color: var(--input-color);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: left;
}

.hop__card-content-wrapper {
    margin-left: 0; 
}

.hop__card-title {
    margin: 0.5rem 0 0.5rem 0;
    font-size: 18px;
}

.hop__card-content {
    margin: 5px 0;
}

.hop__card-button {
    align-self: stretch; 
    padding: 10px 15px;
    border: none;
    background-color: #1976d2;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.hop__card-button:hover {
    background-color: #155a9a;
}

.hop__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.hop__card--selected {
    border-color: #1976d2;
    background-color: #e3f2fd;
}

.hop__button {
    width: 100%;
    padding: 20px;
    background-color: #009688;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.hop__button:hover {
    background-color: #00796b;
}

.hop__card-icon {
    position: absolute; 
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: white;

    
    background-color: red; 
    border-radius: 50%; 
    padding: 5px; 

    
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);

    
    transition: transform 0.2s ease;
}

.hop__card-icon:hover {
    transform: scale(1.4); 
}

.hop__card-info {
    display: none; 
    position: absolute;
    top: -25px;
    right: 10px;
    background-color: #009688;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 10; 
}


.hop__card-icon:hover + .hop__card-info {
    display: block;
}

.hop__card-label {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    color: red;
    font-weight: bold;
    background-color: rgba(255, 235, 59, 0.8);
    padding: 2px 8px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    z-index: 9; 
}
.hidden {
    display: none !important; 
}
.icon.blue { color: blue; }
.icon.cyan { color: cyan; }
.icon.green { color: green; }
.icon.orange { color: orange; }
.icon.teal { color: teal; }
.icon.pink { color: rgb(233, 48, 224); }
.icon.red { color: red; }
.icon.gray { color: gray; }
.task__badge.blue { background-color: blue; }
.task__badge.cyan { background-color: cyan; }
.task__badge.green { background-color: green; }
.task__badge.orange { background-color: orange; }
.task__badge.teal { background-color: teal; }
.task__badge.pink { background-color: rgb(233, 48, 224); }
.task__badge.red { background-color: red; }
.task__badge.gray { background-color: gray; }
@media screen and (min-width: 1200px) {
	#main-header__sidebar-toggle {
		display: none;
	}
	#main-header__logo {
		display: block;
	}
	#main-header svg {
		width: 1.25rem;
		height: 1.25rem;
	}
	#main-header__logo svg {
		width: 2rem;
		height: 2rem;
	}
	#main-header a {
		text-decoration: none;
	}
	#main-header a span {
		display: inline-block;
		font-size: 81.25%;
		color: var(--main-header-link-color);
		transition: color .4s ease-in-out;
	}
	#main-header a {
		gap: .5rem;
	}
	#sidebar {
		position: relative;
		transform: none;
	}
	#main {
		display: grid;
		grid-template-columns: auto 1fr;
	}
	#sidebar__collapse {
		display: flex;
		align-items: center;
		gap: .75rem;
		padding: .75rem 0;
		appearance: none;
		background: transparent;
		border: none;
		font-size: 81.25%;
		color: var(--primary-base);
		cursor: pointer;
	}
	#sidebar__collapse svg {
		fill: var(--primary-base);
	}
	body.sidebar-collapsed .menu-heading,
	body.sidebar-collapsed #sidebar span {
		display: none;
	}
	body.sidebar-collapsed #sidebar__theme-switcher {
		display: none;
	}
	body.sidebar-collapsed #sidebar {
		padding-right: 1.5rem;
	}
	body.sidebar-collapsed #sidebar a,
	body.sidebar-collapsed #sidebar__collapse {
		width: 2.75rem;
		padding-right: 0;
		justify-content: center;
	}
	body.sidebar-collapsed #sidebar__collapse svg {
		transform: rotate(180deg);
	}
}
@media (max-width: 768px) {
	#main-content__container {
		padding: .5rem;
	}
	#main-content {
		padding: .5rem;
		background-color: var(--main-bg);
	}
    .projects {
        grid-template-columns: 1fr; 
		gap: 1rem;
    }
	.projects__card {
		width: 100%;
		max-width: 45%;
		transition: transform 0.3s ease-in-out;
		margin: 0 auto; 
	}
    .task__badge,
    .task__meta-list {
        display: none;
    }
    .task__card {
        grid-template-columns: 1fr;
        padding: 0.5rem;
    }
    .task__card-content {
        display: flex;
        align-items: center;
        text-align: left;
    }
    .material-symbols-rounded.icon {
        font-size: 20px;
        margin-right: 8px;
    }
    .task__label {
        font-size: 0.875rem;
    }
	.user-info {
		gap: 0;
		padding: 0.5rem;
	}
	.thong-ke {
		grid-template-columns: 1fr; 
	  }
	.thong-ke__revenue-list {
	grid-template-columns: 1fr; 
	}
	.thong-ke__revenue-list::after {
	display: none; 
	}
	.thong-ke__icon {
	font-size: 20px; 
	}
	.thong-ke__progress-data,
	.thong-ke__revenue-data {
	font-size: 1rem; 
	}
	.hop__container {
        flex-direction: column;
        gap: 20px;
    }

    .hop__panel--left,
    .hop__panel--right {
        width: 100%;
    }

    .hop__label {
        font-size: 15px;
    }

    .hop__card-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .hop__button {
        font-size: 16px;
        padding: 15px;
    }
}
@media (max-width: 480px) {
    .hop__wrapper {
        padding: 0 10px;
    }

    .hop__panel--left,
    .hop__panel--right {
        width: 100%;
    }

    .hop__input,
    .hop__select,
    .hop__button {
        width: 100%;
        font-size: 14px;
        box-sizing: border-box;
    }

    .hop__label {
        font-size: 14px;
    }

    .hop__card-container {
        grid-template-columns: 1fr;
    }
}
