body{
  margin:0;
  font-family:"Segoe UI", sans-serif;
  background:#1e1e1e;
  color:#eee;
}
.container{
  max-width:1200px;
  margin:auto;
  padding:20px;
  display:grid;
  grid-template-columns:2.5fr 1fr;
  gap:25px;
}

.main-news img{
  width:100%;
  border-radius:6px;
}

.news-title{
  margin:15px 0;
  line-height:1.5;
}

.meta{
  display:flex;
  gap:20px;
  font-size:14px;
  color:#bbb;
  margin-bottom:15px;
}

.news-text{
  line-height:1.8;
  color:#ddd;
}

.sidebar h3{
  margin-bottom:15px;
}

.sidebar h3 span{
  display:inline-block;
  width:10px;
  height:10px;
  background:red;
  margin-right:8px;
}

.side-item{
  display:flex;
  gap:10px;
  margin-bottom:15px;
  display: block;
}

.side-item img{
  width:80px;
  height:60px;
  object-fit:cover;
  border-radius:4px;
}

.side-item p{
  font-size:14px;
  line-height:1.4;
  color:#ddd;
  padding: 9px;
}

@media(max-width:768px){
  .container{
    grid-template-columns:1fr;
  }
}
#subjects
{
    color: #11f;
    font-size: 20px;
    text-decoration: bold;
}
#ditailsdiv
{
    display: flex;
    padding: 9px;
}
#messages
{
    color: #111;
    font-size: 22px;
    text-align: justify;
    padding: 4px;
    border: solid 3px #ffe;
    background-color: #eeefee;

}
.eyemian
{
    color: #ffffff;
    background-color: #348;
    padding-right: 2px;
    margin-right: 4px;
    border-radius: 8px;
}
.sidelink{
    text-decoration: none;
}
/*Comment*/
  .comment-form{
    max-width: 700px;
    margin: auto;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
  .comment-form h2{
    text-align: center;
    margin-bottom: 20px;
    color: #0d4fa3;
  }
  .comment-form .form-group{
    margin-bottom: 15px;
  }
  .comment-form label{
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
  .comment-form input,
  .comment-form textarea{
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
  }
  .comment-form textarea{
    resize: vertical;
  }
  .comment-form button{
    padding: 12px;
    background: #0d4fa3;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
  }
  .comment-form button:hover{
    background: #083b7a;
  }
  #statusMsg{
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
  }
  .meta{
    background-color: #fa9;
    color: black;
    font-size: 20px;
  }
  .alerts{
    color: #445;
    background-color: #1f7;
    border-radius: 6px;
    border-left: solid 3px #671;
    border-bottom: solid 4px #761;
    padding: 6px;
  }