.body {
            font-family: Arial, sans-serif;
            background-color: #f5f5f5;
            margin: 0;
            padding: 0;
        }
		
       /* .back-button {
            position: fixed;
            top: 10px;
            left: 10px;
            background-color: rgba(0, 0, 0, 0.6);
            color: white;
            border: none;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.5rem;
            z-index: 10;
        }*/
		
		.back-button {
  position: fixed;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 35px;
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 10;
}
		
		.container-head {
            max-width: 600px;
           /* margin: 20px auto;*/
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
		
		
        .image-container img {
            width: 100%;
            display: block;
        }
        .content {
            padding: 15px;
        }
        .title {
            font-size: 1.4rem;
            font-weight: bold;
        }
        .description {
            color: #666;
            margin: 5px 0 15px;
        }
        .icons {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .icons .left {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .icons .left span {
            font-size: 1.2rem;
            color: #333;
			margin-left:5px;
        }
        .icons .right {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .icon {
            display: flex;
            align-items: center;
            cursor: pointer;
            color: #333;
            font-size: 1.5rem;
			padding-right: 15px;
        }
        .comment {
            margin-top: 10px;
            font-size: 0.9rem;
            color: #666;
        }
        @media (max-width: 600px) {
            .title {
                font-size: 1.0rem;
            }
            .description {
                font-size: 0.8rem;
            }
        }