.dashboard {
  box-sizing: border-box;
}

.dashboard .container {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.dashboard .inner {
  width: 100%;
  max-width: 1545px;
  display: block;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.dashboard-title {
  font-size: 20px;
  font-weight: 700;
  color: #9a9a9a;
  padding: 20px;
  background-color: white;
  border-bottom: 1px solid #ddd;
}

.dashboard .header-main {
  background-color: #d9d9d9;
  height: 95px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard .header-main .inner {
  display: flex;
  justify-content: space-between;
}

.dashboard .header-bottom .inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-block: 25px;
  border-bottom: 1px solid #9a9a9a;
  gap: 40px;
}

.dashboard .content .inner {
  display: flex;
}

.dashboard .nav-left,
.dashboard .nav-right {
  display: flex;
  align-items: center;
}

.dashboard .nav-left a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  margin: 0 50px;
  font-weight: 500;
	line-height: 95px;
	position: relative;
}

.dashboard .nav-left a::before {
 	content: "";
	position: absolute;
	width: 100%;
	height: 4px;
	background-color: #fff0;
	bottom: 0;
}

.dashboard .nav-left a:hover::before,
.dashboard .nav-left a.active::before {
  background-color: #4285f4;
}

.dashboard .nav-right {
  margin-right: 20px;
}

.dashboard .nav-right .bell-icon,
.dashboard .nav-right .post-button {
  margin-left: 20px;
}

.dashboard .post-button {
  background-color: #fff;
  color: #4285f4;
  padding: 20px 14px;
  border: 2px solid #4285f4;
  border-radius: 0px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
}

.dashboard .content.container {
  display: flex;
}

.dashboard .sidebar {
  width: 395px;
  background-color: white;
  padding: 30px 0;
  border-right: 1px solid #9a9a9a;
}

.dashboard .sidebar a {
  display: block;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0px;
  color: #9a9a9a;
  padding: 10px;
	padding-left:  60px;
  border-left: 3px solid transparent;
}

.dashboard .sidebar a.active {
  color: #4285f4;
  background-color: #4285f433;
  border-left: 3px solid #4285f4;
}

.dashboard .sidebar a:hover {
  color: #4285f4;
}

.dashboard .main-content {
  flex-grow: 1;
  padding: 60px 0 60px 24px;
}

.dashboard .welcome-section {
  margin-bottom: 30px;
}

.dashboard .welcome-section h1 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1em;
  margin: 0;
}

.dashboard .stats {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  margin: 30px 0 50px;
}

.dashboard .stat-item {
  border-radius: 10px;
  min-width: 337px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
	position: relative;
}

.dashboard .stat-item:nth-child(1) {
  background-color: #4285f433; 
}

.dashboard .stat-item:nth-child(2) {
  background-color: #fbbc0552;
}

.dashboard .stat-item .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
	position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20%;
}

.dashboard .stat-item h3 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1em;
  margin: 0;
}

.dashboard .stat-item p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1em;
  margin: 0;
  margin-top: 5px;
}

.dashboard .stat-item .img-stat {
  padding: 10px;
  background-color: white;
}

.dashboard .stat-item img {
  width: 30px;
  height: 30px;
 
}

.dashboard .title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1em;
  margin-bottom: 18px;
}

.dashboard table {
  width: 100%;
  border-collapse: collapse;
}

.dashboard table th,
.dashboard table td {
  padding: 18px 8px;
  text-align: left;
  border-width: 0;
}

.dashboard table thead {
  background-color: #e6e8e7;
}

.dashboard table thead th {
  font-size: 12px;
  font-weight: 400;
  padding: 18px 8px;
}

.dashboard table tbody tr {
  border-bottom: 1px solid #000;
}

.dashboard table tbody td {
  font-size: 12px !important;
  font-weight: 600;
  padding: 24px 8px;
  background-color: #fff!important;
}

.dashboard table tbody td a {
  color: #4285f4;
  font-size: 12px !important;
  font-weight: 500;
  padding: 12px 32px;
  text-decoration: none;
  background-color: #D2D5D957;
}

.dashboard table tbody td a:hover {
  text-decoration: underline;
}

.dashboard table tbody td .active {
  color: green;
  font-size: 12px !important;
  font-weight: 600;
}