body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  margin: 0;
  padding: 20px;
}
.container {
  
  padding: 20px;
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.new-project {
  background-color: #add8e6;
  align-items: center;
  padding: 20px;
  margin-bottom: 20px;
}

.new-project input {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.new-project button {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.edit-project {
  background-color: #add8e6;
  align-items: center;
  padding: 20px;
  margin-bottom: 20px;
}

.edit-project button {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  margin-top: 10px;
  cursor: pointer;
}

.logo {
  font-size: 2rem;
  color: #034692;
  align-items: left;
  padding-right: 150px;
}

header {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 100px;
 border-bottom: 1px solid #e0e0e0;
}

header nav ul {
  list-style: none;
  display: flex;
  align-items: center;
}

header nav li {
  margin-right: 20px;
}

header nav a {
  font-size: 1.2rem;
  color: #034692;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

header nav a:hover {
  color: #0267c4;
}

h1 {
  color: #333;
}

button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease-in-out;
}

button:hover {
  background-color: #45a049;
}




#projectContainer {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding-top: 20px;
  overflow-y: auto;
  max-height: calc(100vh - 100px);
}

.project-card {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.project-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.project-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.download-btn,
.delete-btn {
  background-color: #008CBA;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 5px;
}

.download-btn:hover {
  background-color: #007B9A;
}

.delete-btn {
  background-color: #4CAF50;
}

.delete-btn:hover {
  background-color: #45a049;
}


