/* ==========================================================================
   AGENT REPORT TABLES (GENERIC FRAMEWORK)
   CruiseClub / WinCruise Agent Reports
   ========================================================================== */

.cc-agent-report-wrap {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  color: #1f2937;
}

.cc-agent-report-header {
  margin-bottom: 14px;
}

.cc-agent-report-title {
  margin: 0 0 4px 0;
  font-size: 28px;
  line-height: 1.2;
  color: #05599C;
  font-weight: 700;
}

.cc-agent-report-subtitle {
  font-size: 15px;
  line-height: 1.4;
  color: #4b5563;
}

.cc-agent-report-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  border-radius: 0 !important;
}

.cc-agent-report-table {
  width: 100%;
  min-width: 1320px;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 0 !important;
}

/* Header */
.cc-agent-report-table thead th {
  background: #05599C;
  color: #ffffff;
  font-weight: 600;
  padding: 12px 14px;
  text-align: left;
  white-space: nowrap;
  border-radius: 0 !important;
}

/* Body */
.cc-agent-report-table tbody td {
  padding: 12px 14px;
  vertical-align: middle;
  border-top: 1px solid #e5e7eb;
  border-radius: 0 !important;
}

.cc-agent-report-table tbody tr:nth-child(odd) {
  background: #f0f0f0;
}

.cc-agent-report-table tbody tr:nth-child(even) {
  background: #ffffff;
}

.cc-agent-report-table tbody tr:hover {
  background: #e6f7e6;
}

/* Links */
.cc-agent-report-table a {
  color: #05599C;
  text-decoration: none;
  font-weight: 500;
}

.cc-agent-report-table a:hover {
  text-decoration: underline;
}

/* Numeric columns */
.cc-agent-report-table .cc-num {
  text-align: right;
  white-space: nowrap;
}

/* Center specific columns */
.cc-agent-report-table .cc-col-client,
.cc-agent-report-table .cc-col-birthday,
.cc-agent-report-table .cc-col-sail-date,
.cc-agent-report-table .cc-col-invoice,
.cc-agent-report-table .cc-col-bookings {
  text-align: center;
}

/* Override for bookings to center instead of right */
.cc-agent-report-table .cc-col-bookings {
  text-align: center !important;
}

/* Column behavior */
.cc-agent-report-table .cc-col-client,
.cc-agent-report-table .cc-col-birthday,
.cc-agent-report-table .cc-col-sail-date,
.cc-agent-report-table .cc-col-invoice {
  white-space: nowrap;
}

.cc-agent-report-table .cc-col-agent {
  white-space: nowrap;
}

.cc-agent-report-table .cc-col-last-cruise {
  min-width: 180px;
}

.cc-agent-report-table .cc-col-name-age {
  min-width: 180px;
}

.cc-agent-report-table thead .cc-col-client,
.cc-agent-report-table thead .cc-col-birthday,
.cc-agent-report-table thead .cc-col-sail-date,
.cc-agent-report-table thead .cc-col-invoice,
.cc-agent-report-table thead .cc-col-bookings {
  text-align: center;
}


/* Mobile */
@media (max-width: 767px) {
  .cc-agent-report-wrap {
    font-size: 15px;
  }

  .cc-agent-report-title {
    font-size: 24px;
  }

  .cc-agent-report-subtitle {
    font-size: 14px;
  }

  .cc-agent-report-table thead th,
  .cc-agent-report-table tbody td {
    padding: 10px 10px;
  }
}

/* =========================
   END AGENT REPORTS CSS
   ========================= */