/**
 * @version     CVS: 1.0.0
 * @package     com_jnforum
 * @copyright   2024 Jean Christopher Navarro
 * @license     Licencia Pública General GNU versión 2 o posterior. Consulte LICENSE.txt
 * @author      Jean Christopher Navarro <navarrojean018@gmail.com>
 */

section.topic {
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  background-color: #fff;
  padding: 1rem;
  width: 100%;
  box-sizing: border-box;
}

section.topic h1 {
  margin: 0;
  font-weight: bold;
}

.meta {
  font-size: 0.8rem !important;
  color: #666;
  margin: 0;
  padding: 0;
  line-height: 1;
  display: flex;
  gap: 0.5rem;
}

.meta p {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.comment {
  display: flex;
  gap: 1rem;
  flex-direction: row;
  padding: 0.5rem;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  margin-top: 0.5rem;
  width: 100%;
  box-sizing: border-box;
}

.comments {
  display: block;
  box-sizing: border-box;
  width: 100%;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.comment-author {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.comment-author h3 {
  margin: 0;
  padding: 0;
}

.comment-author p {
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.comment-author span {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0.8rem;
  color: #666;
}

section.comment form input,
section.comment form textarea {
  width: 100%;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 0.5rem;
}

section.comment form input {
  height: 40px;
}

section.comment form textarea {
  min-height: 150px;
  max-width: 100%;
  margin: 0;
}

section.comment form button {
  background-color: #007bff;
  width: 100%;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
}

.w-full {
  width: 100% !important;
  display: block !important;
}
