.new-post-page {
  width: 100%;
  min-height: 100vh;
  background: #000000;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.new-post-container {
  width: 100%;
  max-width: 900px;
}

.new-post-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 30px;
  text-align: center;
}
.new-post-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: #4ec9b0;
  margin: 10px auto 0;
}

.new-post-form {
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(78, 201, 176, 0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.new-post-form .form-group {
  margin-bottom: 25px;
}
.new-post-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.new-post-form input[type=text] {
  width: 100%;
  padding: 16px 18px;
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid rgba(78, 201, 176, 0.15);
  border-radius: 10px;
  font-size: 16px;
  color: #fff;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.new-post-form input[type=text]:focus {
  outline: none;
  border-color: #4ec9b0;
  box-shadow: 0 0 0 3px rgba(78, 201, 176, 0.1);
}
.new-post-form textarea {
  width: 100%;
  min-height: 400px;
  padding: 20px;
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(78, 201, 176, 0.15);
  border-radius: 0 0 10px 10px;
  font-size: 14px;
  color: #d4d4d4;
  font-family: "Fira Code", monospace;
  line-height: 1.8;
  resize: vertical;
  box-sizing: border-box;
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4;
}
.new-post-form textarea:focus {
  outline: none;
  border-color: #4ec9b0;
  box-shadow: 0 0 0 3px rgba(78, 201, 176, 0.1);
}
.new-post-form textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.new-post-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.editor-wrapper {
  border-radius: 10px;
  overflow: hidden;
}

.editor-toolbar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 15px;
  background: rgba(30, 30, 30, 0.9);
  border: 1px solid rgba(78, 201, 176, 0.15);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  flex-wrap: wrap;
}

.toolbar-btn {
  padding: 8px 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 13px;
  font-family: "Inter", sans-serif;
  transition: all 0.2s ease;
}
.toolbar-btn:hover {
  background: rgba(78, 201, 176, 0.1);
  border-color: #4ec9b0;
  color: #4ec9b0;
}
.toolbar-btn b, .toolbar-btn i, .toolbar-btn s {
  font-size: 14px;
}

.toolbar-separator {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 5px;
}

.form-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.submit-btn {
  padding: 16px 40px;
  background: linear-gradient(135deg, #4ec9b0, rgb(53.2987012987, 174.7012987013, 150.025974026));
  border: none;
  border-radius: 10px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(78, 201, 176, 0.3);
}

.submit-btn {
  padding: 16px 40px;
  background: linear-gradient(135deg, #4ec9b0, rgb(53.2987012987, 174.7012987013, 150.025974026));
  border: none;
  border-radius: 10px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(78, 201, 176, 0.3);
}
.submit-btn:active {
  transform: translateY(0);
}

.cancel-btn {
  padding: 16px 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  letter-spacing: 1px;
}
.cancel-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}/*# sourceMappingURL=new-post.css.map */