.blogs-body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  margin: 0;
  padding: 0;
  padding-top: 75px;
}

.blogs-container {
  position: relative;
  max-width: 800px;
  margin: 0px auto;
  padding: 10px 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.blogs-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.blogs-list {
  list-style-type: none;
  padding: 0;
}

.blogs-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
}
.blogs-item-content {
  display: flex;
  justify-content: space-between;

  width: 100%;
}

.blogs-text {
  flex-grow: 1;
}

.blogs-delete-button {
  margin-top: 5px;
  background-color: #ff4d4d;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 3px;
  margin-left: 10px;
}

.blogs-delete-button:hover {
  background-color: #ff1a1a;
}

.blogs-list-item a {
  font-size: 1.5em;
  color: #007bff;
  text-decoration: none;
}

.blogs-list-item a:hover {
  text-decoration: underline;
}

.blogs-paragraph {
  font-size: 1em;
  color: #666;
}

.blogs-button,
.blogs-input-submit {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
}

.blogs-button:hover,
.blogs-input-submit:hover {
  background-color: #0056b3;
}

.blogs-form-input,
.blogs-form-textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
}

.blogs-form-label {
  font-weight: bold;
  margin-top: 10px;
  display: block;
  color: #333;
}

/* Center alignment for buttons */
.blogs-button-container {
  text-align: center;
}

.blogs-button,
.blogs-input-submit {
  display: inline-block;
}
.blog-button-container {
  position: absolute;
  top: 10px;
  right: 10px;
}

.blog-button {
  padding: 10px 15px;
  background-color: #007bff; /* Button background color */
  color: white; /* Button text color */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.blog-button:hover {
  background-color: #0056b3; /* Hover state for button */
}

img {
  max-width: 500px;
  max-height: 300px;
  display: flex;
  align-self: center;
  justify-self: center;
}