
/* ===============================
   Global Styles
=================================*/
body {
  font-family: "Roboto", sans-serif;
  background: #0b1a4a;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  font-size: 16px;
  color: #000;
}

/* ===============================
   Wrapper & Container
=================================*/
.diary-wrapper {
  padding: 60px 40px;
  background: linear-gradient(135deg, #0b1a4a 0%, #132d6b 100%);
  display: flex;
  justify-content: center;
}

.diary-container {
  width: 100%;
  max-width: 1300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-left: 8px solid #1a3d7c;
}

/* ===============================
   Title
=================================*/
.diary-title h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1a3d7c;
  margin-bottom: 10px;
  border-bottom: 3px solid #ff9800;
  display: inline-block;
  padding-bottom: 5px;
}

/* ===============================
   Project Table Section
=================================*/
.project-section {
  margin-top: 30px;
}
.project-section h3 {
  font-size: 28px;
  font-weight: 800;
  color: #1a3d7c;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.project-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  background: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.project-table thead {
  background: #1a3d7c;
  color: #fff;
}
.project-table th, .project-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}
.project-table tbody tr:hover {
  background: #eef3ff;
  transition: 0.3s ease;
}
.project-table th:first-child, .project-table td:first-child {
  text-align: center;
  width: 80px;
}
.project-table td:nth-child(5) {
  color: #333;
  font-size: 15px;
  text-align: justify;
}

/* ===============================
   Responsive
=================================*/
@media (max-width: 768px) {
  .diary-container {
    padding: 30px 25px;
  }
  .project-table th, .project-table td {
    padding: 10px;
    font-size: 14px;
  }
  .project-section h3 {
    font-size: 22px;
  }
}
