.content-summary {
  padding: 60px 80px;
  display: flex;
  justify-content: space-between;
  height: -webkit-fill-available;
  flex: 1;
}

.summary-board {
  display: flex;
  flex-direction: column;
}

.summary-header {
  display: flex;
  align-items: center;
  width: 625px;
  height: 73px;
  padding-bottom: 50px;
}

.summary-header h1 {
  font-size: 61px;
}

.summary-header p {
  width: 3px;
  height: 59px;
  background-color: #29ABE2;
  margin: 0 20px;
}

.summary-header span {
  font-size: 27px;
}

.task-container-horizontal {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  flex-wrap: nowrap;
}

.task-content {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 500px; 
}

.task-content a {
  text-decoration: none;
  color: black;
}

.row {
  display: flex;
  gap: 24px;
}

.greeting-container {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background-color: #f5f5f5;
  padding: 24px;
  border-radius: 12px;
  height: fit-content;
}

#greeting h2 {
  font-size: 1.5rem;
  margin: 0;
}

.summary-todo,
.summary-task-status,
.count,
.count1 {
  background-color: white;
  border-radius: 30px;
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.summary-todo:hover,
.summary-task-status:hover,
.count:hover,
.count1:hover {
  background-color: #2A3647;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transform: scale(1.05);
  color: white;
}

#summary-Done:hover svg circle,
#summary-To-do:hover svg circle {
  fill: white;
}

#summary-Done:hover svg path {
  stroke: #2A3647
}

#summary-To-do:hover svg path {
  fill: #2A3647;
}

.summary-todo {
  width: 264px;
}

.summary-task-status {
  width: 520px;
  padding: 20px;
  justify-content: flex-start;
}

.summary-count {
  display: flex;
  gap: 30px;
  width: 100%;
}

.count,
.count1 {
  width: 168px;
  height: 168px;
}

.icon-summary {
  width: 69px;
  height: 69px;
}

.number-container,
.number-urgent-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}

.number-urgent-container {

  gap: 10px;
}

.number {
  width: 31px;
  height: 77px;
  font-size: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.number-container span,
.number span,
.number-urgent-container span {
  font-size: 20px;
}

.vector {
  height: 120px;
  margin-left: 30px;
  margin: 0;
  display:block;
}

.info-date {
  margin-left: 30px;
  display: flex;
  flex-direction: column;
}

.date {
  font-size: 21px;
  margin-bottom: 10px;
  font-weight: 700;
}

.info {
  font-size: 16px;
}

.day {
  text-align: right;
  font-weight: bold;
  padding-right: 20px;
  margin-top: 20px;
}

.day span {
  font-size: 47px;
}

.highlight-name {
  color: rgba(41, 171, 226, 1);
  font-weight: bold;
  font-size: 64px;
}

.dropdown-container {
  position: relative;
}

.navbar-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  min-width: 150px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.navbar-dropdown.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.navbar-dropdown a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: black;
  transition: background 0.2s;
}

.navbar-dropdown a:hover {
  background-color: #f0f0f0;
}

.summary-task-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  width: 520px;
}

.vector-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.vector {
  height: 120px;
  display: block;
}

.split-view {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
}

.greeting-container {
  flex: 1;
}

