p {
  margin: 0;
  padding: 0;
}

.create-btn {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  border: 1px solid rgb(182, 182, 182);
  box-shadow: 2px 2px 5px gray;
  font-size: 20px;
}

.articles-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.article-wrapper {
  position: relative;
}

.article {
  display: flex;
  flex-direction: column;
  border: 1px solid black;
  box-shadow: 4px 4px 10px rgb(174, 174, 174);
  padding: 15px 20px;
  gap: 15px;
}

.titles-section {
  display: grid;
  grid-template-columns: 4fr 2fr;
  align-items: center;
}

.article-title {
  font-size: 20px;
}

.project-title {
  font-size: 17px;
  text-align: right;
}

.article-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  align-items: center;
}

.info-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.date-info {
  color: gray;
}

.tags-info {
  display: flex;
  gap: 10px;
}

.tag {
  border: 1px solid rgb(54, 54, 54);
  border-radius: 4px;
  padding: 2px 4px;
  font-size: 11px;
  background-color: rgb(231, 231, 231);
}

.admin-overlay {
  position: absolute;
  inset: 0;
  background: rgba(120, 120, 120, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.edit-btn,
.delete-btn {
  padding: 8px 16px;
  border: none;
  font-size: 17px;
  font-family: inherit;
  border-radius: 6px;
  cursor: pointer;
  color: white;
  transition: .15s;
}

.edit-btn {
  background: #3b82f6;
}

.edit-btn:hover {
  background: #1961d6;
}

.edit-btn:active {
  background: #629eff;
}

.delete-btn {
  background: #f63b3b;
}

.delete-btn:hover {
  background: #d61919;
}

.delete-btn:active {
  background: #ff6262;
}