@charset "UTF-8";
* {
  box-sizing: border-box;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
}
body {
    background-color: #dbcba6;
    background-image: url("../backgroundimg2.jpg");
    background-repeat: no-repeat;
    background-size: 100% 280px;
}
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}
.header .title {
  margin: 0;
  padding: 0;
  color: black;
  /*color: #3f4754;*/
  font-size: 34px;
}
.header .title::after {
  content: " ";
  display: inline-block;
  width: 50%;
  transform: translate(50%, 0);
  border-bottom: 4px solid #dee2e7;
}
.returnurl {
  display: flex;
  align-items: center;
  justify-content: center;
  max_width: 100%;
}
.items {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.items .item {
  display: flex;
  text-decoration: none;
  margin-bottom: 40px;
}
.items .item .image {
  border-radius: 15px;
  max-width: 300px;
}
.items .item .details {
  padding-left: 30px;
}
.items .item .details .title {
  margin: 0;
  padding: 10px 0;
  color: black;
  font-size: 24px;
}
.items .item .details .date {
  display: block;
  color: black;
  font-size: 14px;
  font-weight: 500;
  padding-top: 10px;
}
.items .item .details .description {
  color: black;
  font-size: 16px;
  margin: 0;
  padding: 5px 0;
}
.create-news {
  display: flex;
  flex-flow: column;
  width: 100%;
  max-width: 500px;
  margin: 50px auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
}
.create-news h1 {
  margin: 0;
  padding: 25px 20px;
  font-size: 20px;
  font-weight: 500;
  color: #3f4754;
  border-bottom: 1px solid #eff2f5;
}
.create-news form {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  padding: 20px;
}
.create-news form label {
  font-weight: 500;
  font-size: 14px;
  color: #74787c;
  padding-bottom: 10px;
}
.create-news form label .required {
  color: #ff1212;
  margin-right: 5px;
}
.create-news form input, .create-news form textarea {
  margin-bottom: 20px;
  width: 100%;
  padding: 10px;
  border: 1px solid #dee1e6;
  border-radius: 4px;
  font-size: 16px;
}
.create-news form input:focus, .create-news form textarea:focus {
  outline: none;
  border-color: #3f4754;
}
.create-news form input::placeholder, .create-news form textarea::placeholder {
  color: #a2a4a8;
}
.create-news form button {
  appearance: none;
  padding: 10px 15px;
  margin-top: 5px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  background-color: #167cdb;
  color: #FFFFFF;
  cursor: pointer;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.15);
  transition: background-color ease 0.2s;
}
.create-news form button:hover {
  background-color: #292e37;
}
.create-news form .msg {
  margin: 0;
  padding: 5px 0 20px 0;
  font-size: 14px;
  font-weight: 500;
}
.create-news form .msg.success {
  color: #07b94c;
}
.create-news form .msg.error {
  color: #be2c2c;
}
/* Custom Css Start by Art Dev */
.items .item {flex-direction: column;}
.items .item .details {padding-left: 0;}
.items .item .image {max-width: 130px;}
.returnurl {flex-direction: column;}
.returnurl a { display: flex; max-width: fit-content; justify-content: center; align-items: center; border-radius: 6px; color: white; background-color: #8a4c1c; padding: 9px 15px; text-decoration: none;}
/* Custom Css End by Art Dev */