* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    min-height: 100vh;
    width: 100%;
    background-color: brown;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/Pictures/siomaipic.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(5px);
}

/* Navigation bar */

.menu_bar {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #FCE604;
    height: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 1;
  }

  button {
    margin-left: 10px;
    padding: 9px 25px;
    background-color: #AE1526;
    font-weight: bold;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    
  
  }

  button:hover {
    background-color: #135E3C;
  }
  
  .logo {
    cursor: pointer;
    margin-right: auto;
    background-color: #FCE604;
  }
  
  
  .menu_bar ul {
    display: flex;
    list-style: none;
  }
  
  .menu_bar ul li {
    padding: 10px 30px;
    position: relative;
    font-weight: bold;
  }
  
  .menu_bar ul li a {
    text-decoration: none;
    font-size: 17px;
    color: #135E3C;
  }
  
  .menu_bar ul li a:hover {
    transition: all 0.3s ease 0s;
    color: #AE1526;
  }
  
  .menu_bar button {
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
  }
  
  .dropdown_menu {
    visibility: hidden; 
    opacity: 0; 
    display: none;
    border-radius: 5px;
    transition: all 0.3s ease, visibility 0.3s ease;
    
  }
  
  .menu_bar ul li:hover .dropdown_menu {
    visibility: visible; 
    opacity: 1; 
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: white;
  }
  
  .dropdown_menu ul {
    display: block;
    list-style: none;
   
  }
  
  .dropdown_menu ul li{
    
    width: 150px;
    padding: 10px;
    text-align: center;
    font-weight: 100;
  }
  
  .dropdown_menu ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #8d8d8d;
  }

.container {
    width: 80%;
    background-color: white;
    border-radius: 10px;
    padding: 20px 60px 40px;

}

.container .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container .content .left-side {
    width: 25%;
    height: 100%;
    position: relative;
}

.content .left-side::before {
    content: '';
    position: absolute;
    height: 70%;
    width: 2px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: lightgray;

}

.content .left-side .details {
    margin: 14px;
    text-align: center;
}

.content .left-side .details i {
    font-size: 30px;
    color: #AE1526;
}


.content .left-side .details .topic {
    font-size: 19px;
    color: #135E3C;
    font-weight: 700;
    margin: 10px ;
}


.content .left-side .details .text-one {
    font-size: 15px;
    color: grey;
}

.content .left-side .details .text-two {
    font-size: 15px;
    color: grey;
   
}
.container .content .right-side {
    width: 75%;
    margin-left: 75px;
}

.content .right-side .topic-text {
    font-size: 30px;
    font-weight: 700;
    color: #AE1526;
}

.right-side .input-box {
    height: 50px;
    width: 100%;
    margin: 12px 0;
}

.right-side .input-box input,
.right-side .input-box textarea {
    height: 100%;
    width: 100%;
    border: none;
    background: lightgray;
    border-radius: 5px;
    padding: 15px;
    margin-top: 10px;
    resize: none;
}



.right-side .message-box {
    min-height: 110px;
    resize: none;
}

.right-side .upload #caption {
    font-size: 15px;
    color: grey;
    margin-top: 10px;

}



.right-side .button {
    display: flex;
    align-items: center;
    gap: 11px;
    justify-content: space-between;
}

.right-side .button input[type="button"] {
    height: 50px;
    width: 50%;
    border: none;
    background: #AE1526;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
    transition: 0.3s ease;
}

.right-side .button input[type="button"]:hover {
    background: lightgray;
    border: #AE1526 solid 2px;
    color: #AE1526;
}

.right-side .button #cancelbtn {
    background: lightgray;
    color: gray;
    transition: 0.3s ease;
    font-weight: 700;
}
.right-side .button #cancelbtn:hover {
    border: none;
    background: darkgray;
    color: white;
}
