body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0D1117; 
  color: #e6edf3;        
  margin: 0;
  padding: 0;
}
.navbar {
  background-color: #161b22;
  padding: 1rem 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.navbar-buttons .cv-button {
  background-color: #6D64B5;
  color: #ffffff;
  padding: 0.6rem 1rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.navbar-buttons .cv-button:hover {
  background-color: #403678;
}

.layout {
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.main-content {
  max-width: 800px;
  width: 100%;
  background: #161b22;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
}

.project-detail h1 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.project-detail .category {
  color: #9C93EB;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.project-detail h3 {
  margin-top: 1.5rem;
  color: #9C93EB;
}

.project-detail ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.project-detail ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  color: #e6edf3;
}

.project-detail ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: #9C93EB;
  font-weight: bold;
  font-size: 1rem;
}

.project-detail a {
  color: #9C93EB;
  font-weight: bold;
  text-decoration: none;
}

.project-detail a:hover {
  text-decoration: underline;
}

.project-detail img {
  max-width: 100%;     
  height: auto;        
  display: block;
  margin: 16px auto;   
  border-radius: 8px;  
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); 
}

