    * { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
    }
    
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(135deg, #74ABE2, #5563DE);
      padding: 5px;
      color: #333;
      min-height: 100vh;
      width: 100vw;
      overflow-y: auto;
    }
    
    header { 
    text-align: center; 
    margin-bottom: 0px; 
    color: #fff; 
    }
    
 
    nav { 
    text-align: center; 
    margin-bottom: 5px; 
    }
    
    
    nav button {
      margin: 5px;
      padding: 3px 5px;
      border: none;
      background: #fff;
      color: #5563DE;
      font-size: 14px;
      font-weight: bold;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    
    nav button:hover { background:       background: linear-gradient(135deg,#aaa,black); }
    .container {
      max-width: 800px;
      margin: auto;
      background: #fff;
      padding: 12px;      
      border-radius: 10px;
      box-shadow: 0 6px 10px rgba(0,0,0,0.15);
    }
    
    
    h2 { 
    margin-bottom: 16px; 
    color: #5563DE; 
    text-align: center; 
    }
    
    
    form { 
    margin-bottom: 10px; 
    }
    
    
    form label { 
    display: block; 
    margin: 10px 0 5px; 
    font-weight: bold; 
    font-size: 0.9em;
    }
    
    
    form input[type="text"],
    form input[type="password"],
    form input[type="file"],
    form textarea {
      width: 100%;
      padding: 12px;
      border: 2px solid #00ffab;
      border-radius: 25px;
      font-size: 1em;
      outline: 0px ;
      color: purple;
    }
    
    
    form textarea { resize: vertical; }
    form button {
      margin-top: 20px;
      padding: 12px 25px;
      border: none;
      background: #5563DE;
      color: #fff;
      font-size: 1em;
      border-radius: 30px;
      cursor: pointer;
      display: block;
      width: 100%;
      transition: background 0.3s ease;
    }
    
    
    form button:hover { 
    background: #4453c4; 
    }
    
    
    .error { 
    color: red; 
    margin-top: 10px; 
    text-align: center; 
    }
    
    
    ul { 
    list-style: none; 
    margin-top: 20px; 
    }
    
    
    li {
      padding: 15px;
      border-bottom: 1px solid #ddd;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }
    
    
    li:last-child { 
    border-bottom: none; 
    }
    
    
    li span { 
    flex: 1; 
    }
    
    
    li img {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      margin-right: 10px;
      object-fit: cover;
    }
    
    
    li button {
      margin: 5px;
      padding: 3px;
      border: none;
      background: #5563DE;
      color: #fff;
      font-weight: bold;
      border-radius: 30px;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    
    
    li button:hover { background: #4453c4; }
    .view { display: none; }
    iframe {
      width: 100%;
      height: 600px;
      border: none;
      border-radius: 5px;
    }
    
    
    .download-link, .share-button {
      text-align: center;
      font-size: 1em;
      font-weight: bold;
      text-decoration: none;
      color: #fff;
      background: #5563DE;
      padding: 12px 25px;
      border-radius: 30px;
      transition: background 0.3s ease;
      margin: 0 10px;
      display: inline-block;
    }
    
    
    .download-link:hover, .share-button:hover { background: #4453c4; }
    #fsBackBtn {
      position: absolute;
      top: 10px;
      left: 10px;
      padding: 5px 5px;
      background: rgba(0,0,0,0.5);
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      z-index: 100;
      display: none;
    }
    
    
    .comment {
      border-bottom: 1px solid #ccc;
      padding: 10px 0;
    }
    
    
    .comment img {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      margin: 10px;
      object-fit: cover;
    }
    
    
    .comment-header {
      display: flex;
      align-items: center;
      font-weight: bold;
    }
    
    
    .comment-text { margin: 5px 0 0 40px; }
    .comment-actions { margin-left: 40px; }
    .comment-actions button {
      margin-right: 5px;
      background: transparent;
      border: none;
      cursor: pointer;
    }
    .comment-actions img {
      width: 20px;
      height: 20px;
    }
    
    
    .bb {
      width: 20px;
      height: 20px;
    }
    
    .ximo{
        width:95%;
        height: auto;
    }
    
    .bicon{
        height: 35px;
        width: 35px;
    }