/* styles.css */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #ccc8aa, #3e3e3e);
  color: #1a1a1a;
}

.header,
footer {
  width: 100%;
  padding: 10px 20px;
  box-sizing: border-box;
}

.header {
  background: #e0e0c8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.account-area form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.account-area input,
.account-area button {
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.account-area button {
  background: #444;
  color: #fff;
  cursor: pointer;
}

.main-container {
  display: flex;
  flex: 1;
  margin: 20px 0;
  width: 80%;
  gap: 20px;
}

.left-menu {
  width: 20%;
}

.content {
  width: 60%;
}

.new-post-section, .post {
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.footer {
  background: #1a1a1a;
  color: #aaa;
  text-align: center;
  padding: 20px;
  font-size: 12px;
}

@media (max-width: 768px) {
  .main-container {
    flex-direction: column;
    width: 90%;
  }
  .left-menu,
  .content {
    width: 100%;
  }
}
