/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
.sidebarsize {
  width: 280px;
}

.sortable thead a.sorted.desc::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
}

.sortable thead a.sorted.asc::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid black;
}

.sortable thead a {
  text-decoration: none;
  color: black;
}

/* Card rows on account profile */
.card-row {
  display: flex;
  align-items: center;
  padding: 16px 12px;
  border-bottom: 1px solid #e9ecef;
  text-decoration: none;
  color: inherit;
  gap: 24px;
}

.card-row:hover {
  background-color: #f8f9fa;
}

.card-row-field {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-row-label {
  font-size: 12px;
  color: #6c757d;
  margin-bottom: 2px;
}

.card-type-badge {
  display: inline-block;
  background-color: #66bb6a;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 14px;
  white-space: nowrap;
}
