.container {
  /* padding-top: 24px; */
  padding-bottom: 24px;
}

::selection {
  background: #B4D5FE;
}

a.flush {
  text-decoration: none;
  /* color: var(--bs-primary); */
}

.hover-primary:hover {
  color: var(--bs-primary) !important;
}

.alert-error {
  border-color: var(--bs-danger);
  background-color: #ffe0db;
  color: #8e2e1f;
}

.hover-line:hover {
  text-decoration: underline;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
  text-underline-offset: .25em;
}

.breadcrumb-item>a {
  text-decoration: none;
}

.breadcrumb-item>a:not(active) {
  /* color: var(--bs-primary); */
}

/* Asterisk character on required fields for Crispy Forms */
.asteriskField {
  color: red;
}

/* Datatables's header row color */
table.dataTable thead tr {
  background-color: rgb(244, 244, 244);
}

/* table.table {
    width:100%;
} */

.dataTables_filter,
.dataTables_length {
  margin-top: 5px;
}

/* Add padding to Datatable's wrapper */
.dataTables_wrapper {
  padding-bottom: 24px;
}

.navtitle {
  margin-bottom: 0px;
}

div.page-header {
  padding-bottom: 24px;
}

.page-title {
  margin-bottom: 0px;
}

.callout {
  padding: 1.25rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  background-color: var(--bd-callout-bg, var(--bs-gray-100));
  border-left: 0.3rem solid var(--bd-callout-border, var(--bs-primary));
  border-radius: 4px;
}

.callout-warning {
  border-left-color: var(--bs-warning);
  background-color: var(--bs-warning-bg-subtle) !important;
}

/* Modify Datatables pagination bar for slight cosmetics */
ul.pagination {
  margin-top: 6px !important;
}

.bg-muted {
  background-color: #cfd7df;
}

.bg-label-primary {
  background-color: #e5eefa !important;
  color: var(--bs-primary);
}

.bg-label-secondary {
  background-color: var(--bs-gray-100) !important;
  color: var(--bs-secondary) !important;
}

.border-label-secondary {
  border: 3px solid #ced3da !important;
}

.border-light-secondary {
  border: 3px solid rgba(133, 146, 163, 0.08);
}

.bg-label-success {
  background-color: #e8fadf !important;
  color: var(--bs-success) !important;
}

.border-label-success {
  border: 3px solid #c6f1af !important;
}

.border-light-success {
  border: 3px solid rgba(113, 221, 55, 0.08);
}

.bg-label-info {
  background-color: #d7f5fc !important;
  color: #03c3ec !important;
}

.border-label-info {
  border: 3px solid #9ae7f7 !important;
}

.border-light-info {
  border: 3px solid rgba(3, 195, 236, 0.08);
}

.bg-label-warning {
  background-color: #ffdb98 !important;
  color: #836015;
}

.border-label-warning {
  border: 3px solid #ffdd99 !important;
}

.border-light-warning {
  border: 3px solid rgba(255, 171, 0, 0.08);
}

.bg-label-danger {
  background-color: #ffe0db !important;
  color: #8e2e1f !important;
}

.border-label-danger {
  border: 3px solid #ffb2a5 !important;
}

.border-light-danger {
  border: 3px solid rgba(255, 62, 29, 0.08);
}

.bg-label-light {
  background-color: white !important;
  color: #fcfdfd !important;
}

.border-label-light {
  border: 3px solid #fefefe !important;
}

.border-light-light {
  border: 3px solid rgba(252, 253, 253, 0.08);
}

.bg-label-dark {
  background-color: #dcdfe1 !important;
  color: #233446 !important;
}

.border-label-dark {
  border: 3px solid #a7aeb5 !important;
}

.border-light-dark {
  border: 3px solid rgba(35, 52, 70, 0.08);
}

.bg-label-gray {
  background-color: rgba(253, 253, 254, 0.856) !important;
  color: rgba(67, 89, 113, 0.1) !important;
}

.border-label-gray {
  border: 3px solid rgba(249, 249, 250, 0.64) !important;
}

.border-light-gray {
  border: 3px solid rgba(67, 89, 113, 0.08);
}

.detail-list {
  overflow-x: scroll;
}

.detail-list::-webkit-scrollbar {
  display: none;
}

.scroller-thin::-webkit-scrollbar {
  width: 6px;
}

.scroller-thin::-webkit-scrollbar-track {
  background: transparent;
}

.scroller-thin::-webkit-scrollbar-thumb {
  background-color: rgba(155, 155, 155, 0.5);
  border-radius: 20px;
  border: transparent;
}

/* Datatables no wrap class */
.nowrap {
  white-space: nowrap;
}

.nowrap-min {
  white-space: nowrap;
  width: 1%;
}

/* https://stackoverflow.com/a/18292263 */
.dataTables_scroll {
  overflow: auto;
}

/* Override datatables' bootstrap5 default styles */
table.dataTable>tbody>tr.selected>* {
  box-shadow: inset 0 0 0 9999px #006eff34 !important;
  color: black !important;
}

table.dataTable.table-striped>tbody>tr.odd>* {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.025)
}

table.dataTable.table-striped>tbody>tr.odd.selected>* {
  box-shadow: inset 0 0 0 9999px #006eff3b;
}

table.dataTable.table-hover>tbody>tr:hover>* {
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.025)
}

table.dataTable.table-hover>tbody>tr.selected:hover>* {
  box-shadow: inset 0 0 0 9999px #006eff3f;
}

table.dataTable.table-hover>tbody>tr.selected a {
  color: var(--bs-primary);
}

table.small-content {
  font-size: 0.9rem;
}

/* Show element on hover */
/* https://stackoverflow.com/a/5210064 -> for child element */
/* https://stackoverflow.com/a/5210074 -> for 'adjacent sibling' element */


.hover-show {
  visibility: hidden;
}

.hover-trigger:hover .hover-show {
  display: block;
  visibility: visible;
}

/* Navbar styles */

.navbar-brand {
  margin-right: 42px;
}

li.nav-item>a.nav-link {
  color: inherit;
}

li.nav-item>a.nav-link.active {
  font-weight: 500;
  color: var(--bs-primary);
}

.dropdown-divider {
  height: 0;
  margin: var(--bs-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid rgb(212, 212, 212);
  opacity: 1;
}

.nav-link:not(active) {
  color: black;
}

.nav-link.active span {
  color: var(--bs-primary);
}


/* From Sneat */
.divider {
  display: block;
  text-align: center;
  margin: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.divider .divider-text {
  position: relative;
  display: inline-block;
  font-size: 0.8rem;
  padding: 0rem 1rem;
}

.divider-text-lg {
  font-size: 1.2rem !important;
}

.divider .divider-text i {
  font-size: 1rem;
}

.divider .divider-text:before,
.divider .divider-text:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100vw;
  border-top: 1px solid rgba(67, 89, 113, 0.2);
}

.divider .divider-text:before {
  right: 100%;
}

.divider .divider-text:after {
  left: 100%;
}

.divider.text-start .divider-text {
  padding-left: 0;
}

.divider.text-end .divider-text {
  padding-right: 0;
}

.divider.text-start-center .divider-text {
  left: -25%;
}

.divider.text-end-center .divider-text {
  right: -25%;
}

.divider.divider-dotted .divider-text:before,
.divider.divider-dotted .divider-text:after {
  border-style: dotted;
  border-width: 0 1px 1px;
  border-color: rgba(67, 89, 113, 0.2);
}

.divider.divider-dashed .divider-text:before,
.divider.divider-dashed .divider-text:after {
  border-style: dashed;
  border-width: 0 1px 1px;
  border-color: rgba(67, 89, 113, 0.2);
}

.divider.divider.divider-secondary .divider-text:before,
.divider.divider.divider-secondary .divider-text:after {
  border-color: #8592a3;
}

.divider.divider.divider-success .divider-text:before,
.divider.divider.divider-success .divider-text:after {
  border-color: #71dd37;
}

.divider.divider.divider-info .divider-text:before,
.divider.divider.divider-info .divider-text:after {
  border-color: #03c3ec;
}

.divider.divider.divider-warning .divider-text:before,
.divider.divider.divider-warning .divider-text:after {
  border-color: #ffab00;
}

.divider.divider.divider-danger .divider-text:before,
.divider.divider.divider-danger .divider-text:after {
  border-color: #ff3e1d;
}

.divider.divider.divider-dark .divider-text:before,
.divider.divider.divider-dark .divider-text:after {
  border-color: #233446;
}

.divider.divider.divider-gray .divider-text:before,
.divider.divider.divider-gray .divider-text:after {
  border-color: rgba(67, 89, 113, 0.1);
}

/* End from Sneat */

.tab-content {
  color: #495057;
  border: 1px solid;
  border-color: #fff #dee2e6 #dee2e6 #dee2e6;
}

.select2-container--default .select2-selection--multiple {
  border: 1px solid #ced4da;
}

select option {
  padding: 5px;
  /* set margin to 5px on all sides */
}

.select2-results__group {
  padding-left: 12px !important;
  font-size: small;
  font-weight: 700 !important;
  color: black !important;
}

.select2-results__options--nested {
  padding-left: 18px;
}

.form-text {
  display: block;
  margin-top: 2px;
}

.editable-view-form .form-control,
.editable-view-form .form-select {
  display: block;
  width: 100%;
  padding: .375rem, .375rem;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

/* Limit text length to n lines using CSS */
/* https://stackoverflow.com/a/13924997 */
.custom-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.spinner {
  animation: none;
  /* don't apply the animation by default */
}

.spinner.spin {
  animation: spin 0.5s linear infinite;
  /* apply the animation when the "spin" class is added */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  /* rotate the icon 0 degrees at the start of the animation */
  100% {
    transform: rotate(360deg);
  }

  /* rotate the icon 360 degrees (one full circle) at the end of the animation */
}

select[readonly] {
  pointer-events: none;
  cursor: not-allowed;
  color: gray !important;
}

.small {
  font-size: small !important;
}

.smaller {
  font-size: smaller !important;
}

.rem-1-25 {
  font-size: 0.9rem !important;
}

.navbar-toggler-inverse {
  display: none;
}

@media (min-width: 768px) {
  .navbar-toggler-inverse {
    display: block;
  }
}

.avatar-sm {
  vertical-align: middle;
  width: 24px;
  height: auto;
  border-radius: 20%;
  margin-right: 6px;
}

.avatar-md {
  vertical-align: middle;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 6px;
}

.avatar-name {
  vertical-align: middle;
}

/* .avatar-group {
  display: flex;
  align-items: center;
  display: inline-flex;
} */

.avatar-list {
  margin-bottom: 5px;
}

.list-group-item-collapse {
  border-top: 0px;
}

.list-group-collapse-opener {
  text-align: center;
  font-size: 0.9rem;
  border-top: 0px;
}

.text-bg-violet {
  color: rgb(255, 255, 255);
  background-color: #712cf9
}

.card-auto-width {
  width: auto;
}

/* 
.btn-light .btn-light-bordered {
  border-color: #3d464f;
} */


/* Custom list group styles */

.form-check-input:checked+.form-checked-content {
  opacity: .5;
}

.form-check-input-placeholder {
  border-style: dashed;
}

[contenteditable]:focus {
  outline: 0;
}

.list-group-checkable .list-group-item {
  cursor: pointer;
}

.list-group-item-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

.list-group-item-check:hover+.list-group-item {
  background-color: var(--bs-secondary-bg);
}

.list-group-item-check:checked+.list-group-item {
  color: #fff;
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.list-group-item-check[disabled]+.list-group-item,
.list-group-item-check:disabled+.list-group-item {
  pointer-events: none;
  filter: none;
  opacity: .5;
}

.list-group-radio .list-group-item {
  cursor: pointer;
  border-radius: .5rem;
}

.list-group-radio .form-check-input {
  z-index: 2;
  margin-top: -.5em;
}

.list-group-radio .list-group-item:hover,
.list-group-radio .list-group-item:focus {
  background-color: var(--bs-secondary-bg);
}

.list-group-radio .form-check-input:checked+.list-group-item {
  background-color: var(--bs-body);
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 2px var(--bs-primary);
}

.list-group-radio .form-check-input[disabled]+.list-group-item,
.list-group-radio .form-check-input:disabled+.list-group-item {
  pointer-events: none;
  filter: none;
  opacity: .5;
}

.form-check-inline {
  display: inline-block;
  margin-right: 10px;
}


.main-container {
  display: flex;
  /* flex: 1; */
  height: 100vh;
  /* Set the height to 100% of the viewport */
}

.sidebar {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 280px;
  max-width: 280px;
  border-right: 1px solid #ccc;
}

.sidebar-content {
  flex-grow: 1;
  overflow: auto;
  /* Add a scrollbar if the content overflows */
  padding: 10px 20px;
}

.sidebar-header {
  border-bottom: 1px solid #ccc;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  padding: 10px;
  z-index: 999;
  background: inherit;
}

.sidebar-footer {
  border-top: 1px solid #ccc;
  box-shadow: 0 -3px 6px rgba(0, 0, 0, 0.1);
  padding: 10px;
  z-index: 999;
  background: inherit;
}

.dropdown-button {
  white-space: normal;
  /* Wrap the text if it's longer than the container width */
  word-break: break-word;
  /* Break words if necessary to fit the container */
  text-align: left;
  /* Align text to the left */
  width: 100%;
  /* Make the button take up the full width of the container */
}

.main-content {
  flex-grow: 1;
  overflow: auto;
  /* Add a scrollbar if the content overflows */
  padding-bottom: 20px;
}

@media (max-width: 992px) {
  .sidebar {
    display: none;
  }
}

/* Add this to your custom stylesheet (e.g., style.css) */
.sidebar-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  max-width: 300px;
  background-color: white;
  z-index: 1030;
  overflow-y: auto;
  box-shadow: 0 3px 10px #2d2d2d61;
}

.sidebar-overlay .sidebar-header,
.sidebar-overlay .sidebar-footer {
  position: -webkit-sticky;
  position: sticky;
}

.sidebar-overlay .sidebar-header {
  top: 0;
  z-index: 1;
}

.sidebar-overlay .sidebar-footer {
  bottom: 0;
  z-index: 1;
}

.overlay-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1029;
}


.dataTables_wrapper.dt-bootstrap5.no-footer {
  padding-bottom: 1rem;
}

.width-125-px {
  width: 125px;
}

.width-100-px {
  width: 100px;
}

.width-50-px {
  width: 50px;
}

table.dataTable>tbody>tr>td.select-checkbox:before,
table.dataTable>tbody>tr>th.select-checkbox:before {
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.card-title {
  margin-bottom: 1rem;
}

.primary-link {
  /* link-primary */

  /* link-offset-2 */
  text-underline-offset: .25em;

  /* link-underline-opacity-0 */
  text-decoration-color: rgba(var(--bs-link-color-rgb), 0);

  /* link-underline-opacity-50-hover */
  &:hover {
    text-decoration-color: rgba(var(--bs-link-color-rgb), .5);
  }
}

.secondary-link {
  /* link-secondary */
  color: var(--bs-dark);

  /* link-offset-2 */
  text-underline-offset: .25em;

  /* link-underline-opacity-0 */
  text-decoration-color: rgba(var(--bs-dark-rgb), 0.1);

  /* link-underline-opacity-50-hover */
  &:hover {
    text-decoration-color: rgba(var(--bs-link-color-rgb), .5);
  }
}

.form-floating .select2-container--bootstrap-5 .select2-selection {
  height: calc(3.5rem + 2px);
  padding: 1rem 0.75rem;
}

.form-floating .select2-container--bootstrap-5 .select2-selection>.select2-selection__rendered {
  margin-top: 0.55rem;
}

.bg-intekma-blue {
  background-color: #003278 !important;
}

table.table th,
table.table td {
  padding-right: 2rem !important;
}

.table-headless thead {
  display: none;
}

.table-headless tr:first-child td {
  border-top: 1px solid #dee2e6;
}

.table-headless tr:first-child td:first-child {
  border-top-left-radius: .4rem;
}

.table-headless tr:first-child td:last-child {
  border-top-right-radius: .4rem;
}

.table-bordered-outer th {
  border-top: 1px solid #dee2e6;
}

.table-bordered-outer th:first-child,
.table-bordered-outer td:first-child {
  border-left: 1px solid #dee2e6;
}

.table-bordered-outer th:last-child,
.table-bordered-outer td:last-child {
  border-right: 1px solid #dee2e6;
}

.table-bordered-outer th:first-child {
  border-top-left-radius: .4rem;
}

.table-bordered-outer th:last-child {
  border-top-right-radius: .4rem;
}

.table-bordered-outer tr:last-child td:first-child {
  border-bottom-left-radius: .4rem;
}

.table-bordered-outer tr:last-child td:last-child {
  border-bottom-right-radius: .4rem;
}

.table-bordered-outer th:first-child,
.table-bordered-outer td:first-child {
  padding-left: 0.75rem !important;
}

.w-0 {
  width: 0% !important;
  white-space: nowrap !important;
}

.divider {
  display: block;
  text-align: center;
  margin: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

/* not first dividers */
.divider:not(:first-child) {
  margin-top: 2rem;
}

.divider .divider-text {
  font-size: 1rem;
  position: relative;
  display: inline-block;
  padding: 0rem 1rem;
}

fieldset legend:not(.col-form-label) {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #1b4ca6;
  /* underline */
  border-bottom: 1px solid #dee2e6;
  /* add gap between text and underline */
  padding-bottom: 0.5rem;
}

.card.card-hoverable:hover {
  box-shadow: 0 0 0.2rem 0.06rem rgba(var(--bs-secondary-rgb), 0.2);
  cursor: pointer;
}

/* on click */
.card.card-hoverable:active {
  background-color: var(--bs-primary-subtle)
}

a.nav-link:hover {
  color: var(--bs-primary) !important;
}

.table-white {
  background-color: #fff;
}

a.danger-link {
  text-decoration-line: none;
  color: var(--bs-danger);
}

a.danger-link:hover {
  text-decoration-line: underline;
  color: #b02a37;
  text-underline-offset: .25em;
}

.bg-indigo {
  background-color: var(--bs-indigo);
}

.border-indigo {
  border-color: var(--bs-indigo);
}

.text-indigo {
  color: var(--bs-indigo);
}

.btn-indigo {
  color: #e0cffc;
  background-color: var(--bs-indigo);
  border-color: var(--bs-indigo);
}

.btn-indigo:hover {
  color: #e0cffc;
  background-color: #4e0cb8;
  border-color: #4e0cb8;
}

.btn-indigo:focus {
  color: #e0cffc;
  background-color: #4e0cb8 !important;
  border-color: #4e0cb8;
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-indigo:disabled {
  color: #e0cffc;
  background-color: #8855da;
  border-color: #8855da;
}

.alert-indigo {
  border-color: var(--bs-indigo);
  background-color: #e0cffc;
  color: #4e0cb8;
}

div.choices {
  margin-bottom: 0;
}

.choices .choices__inner {
  background-color: inherit;
  border-radius: 0.375rem;
}

.choices .choices__inner .choices__input {
  background-color: inherit;
}

.btn.btn-link {
  text-underline-offset: .25em;
}

.btn.btn-neutral {
  background-color: var(--bs-gray-300);
  color: var(--bs-body);
  border: none;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-rounded {
  border-radius: 20px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn.btn-neutral:hover {
  background-color: var(--bs-gray-400);
  color: var(--bs-body);

}

.btn.btn-neutral:focus {
  background-color: var(--bs-gray-400);
  color: var(--bs-body);
}

.btn {
  font-weight: 500;
  font-size: medium;
  border-radius: 25px;
  padding: 8px 16px;
}

.btn.btn-primary {
  color: white;
  background-color: #2979ff;
  border: 1px solid #2979ff;
}

.btn.btn-primary:hover {
  color: #2979ff;
  background-color: #e9ecef;
  border: 1px solid #2979ff;
}

.btn.btn-secondary {
  color: #2979ff;
  background-color: white;
  border: 1px solid #2979ff;
}

.btn.btn-secondary:hover {
  color: white;
  background-color: #2979ff;
  border: 1px solid #2979ff;
}

.btn.btn-danger {
  color: white;
  background-color: #D32F2F;
  border: 1px solid #D32F2F;
}

.btn.btn-danger:hover {
  color: #D32F2F;
  background-color: white;
  border: 1px solid #D32F2F;
}

/* Claim Details */

.details-container {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 0 auto;
  max-width: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Claim activities */

.timeline-container {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #003278;
}

/* === Each Activity Entry === */
.activity-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.75rem;
  position: relative;
  padding-left: 1rem;
}

.activity-item::before {
  content: '';
  position: absolute;
  left: -0.5rem;
  top: 1rem;
  width: 10px;
  height: 10px;
  background: #003278;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff;
}

/* === Avatar Styling === */
.avatar {
  width: 48px;
  height: 48px;
  margin-right: 1rem;
  flex-shrink: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #6c757d;
  color: white;
  text-align: center;
  line-height: 48px;
  font-weight: bold;
  font-size: 1.1rem;
}

/* === Activity Content === */
.content {
  flex: 1;
}

.activity-text {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* === Timestamp & Comments === */
.timestamp {
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.2rem;
}

.comment-box {
  background: #f8f9fa;
  border-left: 3px solid #003278;
  padding: 0.75rem 1rem;
  margin-top: 0.75rem;
  border-radius: 0.375rem;
  font-style: italic;
  color: #333;
}

/* === Text Utilities === */
.text-link {
  color: #007bff;
  font-weight: 500;
  text-decoration: none;
}

.text-success {
  color: #28a745;
  font-weight: 600;
}

.text-danger {
  color: #dc3545;
  font-weight: 600;
}

/* === Badges === */
.badge {
  display: inline-block;
  padding: 0.35rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.25rem;
}

.badge-outdated {
  background-color: #f8d7da;
  color: #721c24;
  margin-left: 0.5rem;
}


/* === Comment Form === */
textarea {
  width: 100%;
  border-radius: 6px;
  padding: 0.75rem;
  border: 1px solid #ccc;
  margin-top: 1rem;
  resize: vertical;
}

.btn-comment,
.btn-outline-primary {
  /* display: inline-block; */
  margin-top: 0.5rem;
  /* background: #111112; */
  /* color: white; */
  padding: 0.5rem 1rem;
  /* border: none; */
  border-radius: 6px;
  cursor: pointer;
}

.btn-comment:hover,
.btn-outline-primary:hover {
  background: #0056b3;
}

.see-all {
  text-align: center;
  margin-top: 2rem;
}

.see-all a {
  color: #007bff;
  text-decoration: none;
}

.info-grid {
  display: grid;
  grid-template-columns: max-content 1fr;
  row-gap: 0.75rem;
  column-gap: 1.5rem;
  font-size: 1rem;
  margin-top: auto;
}

.info-label {
  /* font-weight: 600; */
  color: #343a40;
  text-align: left;
  padding-right: 0.25rem;
}