/* line 1, app/assets/stylesheets/historical_contributor.scss */
:root {
  --profile-user-bg-color: #00A65A;
  --profile-user-text-color: #FFFFFF;
}

/* line 6, app/assets/stylesheets/historical_contributor.scss */
#modal_content {
  width: 100%;
}

/* line 10, app/assets/stylesheets/historical_contributor.scss */
#modal_title {
  display: flex;
}

/* line 14, app/assets/stylesheets/historical_contributor.scss */
#modal_title > h4 {
  margin: 0 5px;
}

/* line 18, app/assets/stylesheets/historical_contributor.scss */
#btns-group {
  display: flex;
  flex-direction: row-reverse;
}

/* line 23, app/assets/stylesheets/historical_contributor.scss */
.maximize-button {
  margin: 0 10px;
  border: none;
  background: transparent;
  color: #000;
  filter: alpha(opacity=20);
  opacity: 0.2;
}

/* line 32, app/assets/stylesheets/historical_contributor.scss */
#historical_contributor {
  display: flex;
  flex-direction: row;
  margin: 10px 0;
}

/* line 38, app/assets/stylesheets/historical_contributor.scss */
#historical_contributor_text {
  width: 100%;
}

/* line 42, app/assets/stylesheets/historical_contributor.scss */
#historical_contributor_text_input {
  width: 100%;
  min-width: 476px;
  max-width: 800px;
}

/* line 48, app/assets/stylesheets/historical_contributor.scss */
#historical_contributor_text_input > input {
  width: 100%;
  border-radius: 10px;
  padding: 15px;
  background-color: #dadada;
  outline: none;
  border: none;
}

/* line 57, app/assets/stylesheets/historical_contributor.scss */
.profileUser, .profileUserComments {
  box-sizing: border-box;
  background-color: var(--profile-user-bg-color);
  color: var(--profile-user-text-color);
  margin: 0 10px;
  padding: 10px;
  width: 40px;
  border-radius: 100%;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
}

/* line 70, app/assets/stylesheets/historical_contributor.scss */
#modal_list {
  display: flex;
  flex-direction: column;
}

/* line 75, app/assets/stylesheets/historical_contributor.scss */
#historical_comments_area {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 0;
}

/* line 82, app/assets/stylesheets/historical_contributor.scss */
.historical-contributor-pagination-bar {
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 10px 12px 12px;
  border: 1px solid #e1e6ed;
  border-top: 1px solid #e8edf3;
  border-radius: 0 0 10px 10px;
  background: #f9fafb;
}

/* line 94, app/assets/stylesheets/historical_contributor.scss */
#historical_contributor_comment {
  display: flex;
  margin: 15px 0;
}

/* line 99, app/assets/stylesheets/historical_contributor.scss */
#historical_contributor_comment_conteiner {
  width: 100%;
  min-width: 400px;
}

/* line 104, app/assets/stylesheets/historical_contributor.scss */
#historical_contributor_comment_name_or_date {
  display: flex;
  flex-direction: row;
  align-items: baseline;
}

/* line 110, app/assets/stylesheets/historical_contributor.scss */
.historical_contributor_comment_name, .historical_contributor_comment_date {
  margin: 0 5px;
}

/* line 114, app/assets/stylesheets/historical_contributor.scss */
.historical_contributor_comment_name {
  font-size: 16px;
  font-weight: 600;
}

/* line 119, app/assets/stylesheets/historical_contributor.scss */
.historical_contributor_comment_date {
  font-size: 14px;
  font-weight: 400;
}

/* line 124, app/assets/stylesheets/historical_contributor.scss */
.historical_contributor_comment_is_edited {
  font-size: 12px;
  font-weight: 400;
}

/* line 129, app/assets/stylesheets/historical_contributor.scss */
#historical_contributor_comment_descricao {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  max-height: 600px;
  background-color: #dadada;
  overflow: auto;
  max-width: 800px;
}

/* line 139, app/assets/stylesheets/historical_contributor.scss */
#modal_content_anexos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 10px;
  white-space: nowrap;
}

/* line 150, app/assets/stylesheets/historical_contributor.scss */
.btn-primary-custom {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  color: var(--profile-user-text-color);
  background-color: var(--profile-user-bg-color);
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* line 163, app/assets/stylesheets/historical_contributor.scss */
.btn-primary-custom:hover {
  color: var(--profile-user-text-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* line 169, app/assets/stylesheets/historical_contributor.scss */
.btn-primary-custom:active {
  color: var(--profile-user-text-color);
  transform: translateY(0);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* line 175, app/assets/stylesheets/historical_contributor.scss */
#historical_contributor_pagination {
  position: relative;
  z-index: 0;
  width: 100%;
  text-align: center;
  margin-top: 0;
  padding: 4px 0 0;
  border-top: none;
  background: transparent;
  border-radius: 0;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}

/* line 190, app/assets/stylesheets/historical_contributor.scss */
.historical-contributor-pagination-bar #historical_contributor_pagination {
  padding-top: 0;
}

/* line 194, app/assets/stylesheets/historical_contributor.scss */
.pagination_container {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  border-radius: 999px;
  gap: 6px;
}

/* line 205, app/assets/stylesheets/historical_contributor.scss */
.page-item {
  margin: 0;
}

/* line 209, app/assets/stylesheets/historical_contributor.scss */
.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  line-height: 1;
  font-size: 13px;
  font-weight: 600;
  color: #3d4b63;
  background-color: #fff;
  border: 1px solid #dbe2ea;
  border-radius: 8px;
  text-decoration: none;
  transition: all .2s ease;
}

/* line 227, app/assets/stylesheets/historical_contributor.scss */
.page-link:hover {
  color: #1f6feb;
  text-decoration: none;
  background-color: #eef5ff;
  border-color: #9ec2ff;
}

/* line 234, app/assets/stylesheets/historical_contributor.scss */
.page-item.active .page-link {
  color: #fff;
  background: linear-gradient(135deg, #2f80ed 0%, #1f6feb 100%);
  border-color: #1f6feb;
  box-shadow: 0 6px 14px rgba(31, 111, 235, 0.25);
}

/* line 241, app/assets/stylesheets/historical_contributor.scss */
.page-item.disabled .page-link {
  color: #a5b0c2;
  pointer-events: none;
  background-color: #f7f9fc;
  border-color: #e8edf3;
}

/* line 248, app/assets/stylesheets/historical_contributor.scss */
.page-link-arrow {
  font-size: 16px;
  padding-bottom: 2px;
}

/* line 253, app/assets/stylesheets/historical_contributor.scss */
.page-link-dots {
  border-color: transparent;
  background: transparent;
  min-width: 26px;
  padding: 0;
}

/* line 260, app/assets/stylesheets/historical_contributor.scss */
.style-default {
  display: none;
  margin: 10px 10px 10px 0;
  text-align: center;
}

/* line 266, app/assets/stylesheets/historical_contributor.scss */
.btn_edit, .btn_delete {
  background-color: transparent;
  border: none;
  color: #007bff;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  margin: 0 5px;
  font-size: medium;
}

/* line 277, app/assets/stylesheets/historical_contributor.scss */
.modal-fullscreen {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
}

/* line 288, app/assets/stylesheets/historical_contributor.scss */
.modal-fullscreen .modal-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* line 294, app/assets/stylesheets/historical_contributor.scss */
.modal-fullscreen .modal-body {
  flex: 1;
  overflow-y: auto;
}

/* line 299, app/assets/stylesheets/historical_contributor.scss */
.scrollable-comments {
  max-height: 400px;
  overflow-y: auto;
  padding-bottom: 12px;
}

/* line 305, app/assets/stylesheets/historical_contributor.scss */
.modal-fullscreen .scrollable-comments {
  max-height: calc(90vh - 200px);
}

@media screen and (min-width: 768px) {
  /* line 310, app/assets/stylesheets/historical_contributor.scss */
  .modal-fullscreen .modal-header h4 {
    font-size: 2em;
  }
  /* line 313, app/assets/stylesheets/historical_contributor.scss */
  .modal-fullscreen .historical_contributor_comment_name {
    font-size: 18px;
  }
  /* line 316, app/assets/stylesheets/historical_contributor.scss */
  .modal-fullscreen .historical_contributor_comment_date {
    font-size: 16px;
  }
  /* line 319, app/assets/stylesheets/historical_contributor.scss */
  .modal-fullscreen .historical_contributor_comment_is_edited {
    font-size: 16px;
  }
  /* line 322, app/assets/stylesheets/historical_contributor.scss */
  .modal-fullscreen #historical_contributor_comment_descricao {
    min-width: 100%;
  }
  /* line 325, app/assets/stylesheets/historical_contributor.scss */
  .modal-fullscreen #historical_contributor_text_input {
    min-width: 100%;
  }
  /* line 329, app/assets/stylesheets/historical_contributor.scss */
  .modal-fullscreen .modal-footer {
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
  }
  /* line 335, app/assets/stylesheets/historical_contributor.scss */
  .modal-fullscreen .btn-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }
  /* line 341, app/assets/stylesheets/historical_contributor.scss */
  .modal-fullscreen .btn-default {
    margin-left: auto;
  }
}
