/* Modern Table Styles */
.modern-table-container {
  display: flex;
  flex-direction: column;
}

.modern-table {
  display: flex;
  flex-direction: column;
  font-family: 'Inter', sans-serif;
}

.modern-table-header {
  position: sticky;
  top: 0;
  z-index: 10;
}

.modern-table-header-cell {
  display: flex;
  align-items: center;
  padding: 12px 24px;
  background: #FAFAFA;
  border-bottom: 1px solid #EAECF0;
  box-sizing: border-box;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #475467;
}

.modern-table-header-cell:first-child {
  border-top-left-radius: 12px;
}

.modern-table-header-cell:last-child {
  border-top-right-radius: 12px;
}

.modern-table-body {
  display: flex;
  flex-direction: column;
}

.modern-table-row {
  border-bottom: 1px solid #EAECF0;
}

.modern-table-row:last-child {
  border-bottom: none;
}

.modern-table-cell {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  box-sizing: border-box;
  min-height: 62px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #030712;
  letter-spacing: -0.2px;
}

.modern-table-cell-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.modern-table-cell a {
  color: #009ACD;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.2px;
}

.modern-table-cell a:hover {
  text-decoration: underline;
}

.modern-table-total-row {
  background: #F9FAFB;
  font-weight: 700;
  color: #344054;
}

.modern-table-month-total-row {
  background: #FAFAFA;
  font-weight: 700;
  color: #475569;
}

/* Column width controls */
.modern-table-month-col {
  width: 120px;
  flex: 0 0 120px;
}

.modern-table-agent-col {
  flex: 2;
  min-width: 200px;
}

.modern-table-carrier-col {
  flex: 1;
  min-width: 150px;
}

.modern-table-count-col {
  width: 120px;
  flex: 0 0 120px;
}

@media (max-width: 768px) {
  .modern-table-cell {
    padding: 12px 16px;
    min-height: 60px;
    font-size: 13px;
  }
  
  .modern-table-header-cell {
    padding: 8px 16px;
    font-size: 11px;
  }
  
  .modern-table-month-col {
    width: 80px;
    flex: 0 0 80px;
  }
  
  .modern-table-count-col {
    width: 80px;
    flex: 0 0 80px;
  }
} 
/*
 * 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.
 *



 */
