/* =====================================================
   BIVA TALENT — ASSOCIATE WORK LOGS
   FULL REPLACEMENT
===================================================== */


/* =====================================================
   PAGE
===================================================== */

.associate-work-log-page {
  min-height: 100vh;

  padding: 24px;

  background:
    linear-gradient(
      180deg,
      #f5f7fb,
      #eef3f8
    );
}

.associate-work-log-container {
  width: min(1440px, 100%);

  margin: 0 auto;
}


/* =====================================================
   BACK BUTTON
===================================================== */

.associate-work-log-back-btn {
  width: fit-content;
  min-height: 41px;

  margin-bottom: 16px;
  padding: 0 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  border:
    1px solid #dbe4ee;

  border-radius: 11px;

  color:
    #334155;

  background:
    #ffffff;

  box-shadow:
    0 5px 15px
    rgba(15, 23, 42, 0.045);

  font: inherit;

  font-size: 11px;
  font-weight: 830;

  cursor: pointer;

  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.associate-work-log-back-btn:hover {
  border-color:
    #bfdbfe;

  color:
    #1d4ed8;

  background:
    #eff6ff;

  transform:
    translateX(-2px);

  box-shadow:
    0 7px 18px
    rgba(37, 99, 235, 0.08);
}

.associate-work-log-back-btn svg {
  width: 17px;
  height: 17px;

  fill: none;

  stroke:
    currentColor;

  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =====================================================
   HERO
===================================================== */

.associate-work-log-hero {
  position: relative;

  min-height: 190px;

  padding: 29px 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 28px;

  border:
    1px solid
    rgba(255, 255, 255, 0.08);

  border-radius: 22px;

  color:
    #ffffff;

  background:
    radial-gradient(
      circle at 94% 4%,
      rgba(37, 99, 235, 0.35),
      transparent 36%
    ),
    radial-gradient(
      circle at 4% 100%,
      rgba(251, 191, 36, 0.08),
      transparent 31%
    ),
    linear-gradient(
      145deg,
      #071324,
      #10233f 58%,
      #173675
    );

  box-shadow:
    0 22px 58px
    rgba(7, 19, 36, 0.17);

  overflow: hidden;
}

.associate-work-log-hero::before {
  content: "";

  position: absolute;

  inset:
    0 0 auto 0;

  height: 4px;

  background:
    linear-gradient(
      90deg,
      #2563eb,
      #fbbf24,
      transparent 84%
    );
}

.associate-work-log-hero::after {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  right: -95px;
  bottom: -165px;

  border:
    1px solid
    rgba(255, 255, 255, 0.05);

  border-radius: 50%;

  box-shadow:
    0 0 0 40px
    rgba(255, 255, 255, 0.018),

    0 0 0 80px
    rgba(255, 255, 255, 0.009);

  pointer-events: none;
}

.associate-work-log-hero > * {
  position: relative;

  z-index: 1;
}

.associate-work-log-hero > div:first-child {
  min-width: 0;
}

.associate-work-log-kicker {
  display: block;

  margin-bottom: 8px;

  color:
    #fbbf24;

  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.associate-work-log-hero h1 {
  margin: 0;

  color:
    #ffffff;

  font-size:
    clamp(2.3rem, 4.3vw, 4rem);

  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.associate-work-log-hero p {
  max-width: 720px;

  margin:
    13px 0 0;

  color:
    rgba(255, 255, 255, 0.66);

  font-size: 13px;
  line-height: 1.62;
}


/* =====================================================
   HERO ACTIONS
===================================================== */

.associate-work-log-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 9px;
}

.associate-work-log-refresh-btn,
.associate-work-log-create-btn {
  min-height: 43px;

  padding:
    0 15px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  border-radius: 11px;

  font: inherit;

  font-size: 11px;
  font-weight: 840;

  white-space: nowrap;

  cursor: pointer;

  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease,
    opacity 0.18s ease;
}

.associate-work-log-refresh-btn {
  border:
    1px solid
    rgba(255, 255, 255, 0.16);

  color:
    #ffffff;

  background:
    rgba(255, 255, 255, 0.08);
}

.associate-work-log-refresh-btn:hover {
  border-color:
    rgba(255, 255, 255, 0.28);

  background:
    rgba(255, 255, 255, 0.14);
}

.associate-work-log-create-btn {
  border:
    1px solid #2563eb;

  color:
    #ffffff;

  background:
    #2563eb;

  box-shadow:
    0 8px 20px
    rgba(37, 99, 235, 0.22);
}

.associate-work-log-create-btn:hover {
  background:
    #1d4ed8;

  transform:
    translateY(-1px);
}

.associate-work-log-refresh-btn:disabled,
.associate-work-log-create-btn:disabled {
  opacity: 0.55;

  cursor: wait;

  transform: none;
}

.associate-work-log-refresh-btn svg,
.associate-work-log-create-btn svg {
  width: 16px;
  height: 16px;

  fill: none;

  stroke:
    currentColor;

  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =====================================================
   SUMMARY GRID
===================================================== */

.associate-work-log-summary-grid {
  margin-top: 18px;

  display: grid;

  grid-template-columns:
    repeat(5, minmax(0, 1fr));

  gap: 12px;
}

.associate-work-log-summary-card {
  min-width: 0;
  min-height: 106px;

  padding: 16px;

  display: flex;
  align-items: center;

  gap: 12px;

  border:
    1px solid #dce5ef;

  border-radius: 17px;

  background:
    linear-gradient(
      180deg,
      #ffffff,
      #f8fafc
    );

  box-shadow:
    0 8px 24px
    rgba(15, 23, 42, 0.055);

  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.associate-work-log-summary-card:hover {
  border-color:
    #bfdbfe;

  box-shadow:
    0 12px 30px
    rgba(15, 23, 42, 0.08);

  transform:
    translateY(-2px);
}

.associate-work-log-summary-card > span {
  width: 43px;
  height: 43px;

  flex:
    0 0 43px;

  display: grid;
  place-items: center;

  border-radius: 13px;

  color:
    #475569;

  background:
    #f1f5f9;
}

.associate-work-log-summary-card.is-draft
> span {
  color:
    #475569;

  background:
    #f1f5f9;
}

.associate-work-log-summary-card.is-submitted
> span {
  color:
    #1d4ed8;

  background:
    #eff6ff;
}

.associate-work-log-summary-card.is-revision
> span {
  color:
    #c2410c;

  background:
    #fff7ed;
}

.associate-work-log-summary-card.is-reviewed
> span {
  color:
    #047857;

  background:
    #ecfdf5;
}

.associate-work-log-summary-card.is-rejected
> span {
  color:
    #b91c1c;

  background:
    #fff1f2;
}

.associate-work-log-summary-card svg {
  width: 20px;
  height: 20px;

  fill: none;

  stroke:
    currentColor;

  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.associate-work-log-summary-card > div {
  min-width: 0;

  display: grid;

  gap: 6px;
}

.associate-work-log-summary-card small {
  color:
    #64748b;

  font-size: 9px;
  font-weight: 790;
  line-height: 1.25;
}

.associate-work-log-summary-card strong {
  color:
    #0f172a;

  font-size:
    clamp(1.5rem, 2.4vw, 2.1rem);

  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
}


/* =====================================================
   DIRECTORY
===================================================== */

.associate-work-log-directory {
  margin-top: 18px;

  border:
    1px solid #dce5ef;

  border-radius: 19px;

  background:
    #ffffff;

  box-shadow:
    0 10px 30px
    rgba(15, 23, 42, 0.065);

  overflow: hidden;
}


/* =====================================================
   DIRECTORY HEADER
===================================================== */

.associate-work-log-directory-header {
  padding: 23px 25px;

  display: grid;

  grid-template-columns:
    minmax(0, 0.78fr)
    minmax(500px, 1.22fr);

  align-items: end;

  gap: 26px;

  border-bottom:
    1px solid #e2e8f0;

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(37, 99, 235, 0.06),
      transparent 38%
    ),
    #f8fafc;
}

.associate-work-log-directory-header
> div:first-child
> span {
  display: block;

  margin-bottom: 6px;

  color:
    #2563eb;

  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.associate-work-log-directory-header h2 {
  margin: 0;

  color:
    #0f172a;

  font-size:
    clamp(1.35rem, 2.3vw, 2rem);

  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.associate-work-log-directory-header p {
  margin:
    8px 0 0;

  color:
    #64748b;

  font-size: 11px;
  line-height: 1.55;
}


/* =====================================================
   TOOLBAR
===================================================== */

.associate-work-log-toolbar {
  min-width: 0;

  display: grid;

  grid-template-columns:
    minmax(220px, 1.35fr)
    minmax(175px, 0.8fr)
    auto;

  align-items: center;

  gap: 10px;
}

.associate-work-log-search,
.associate-work-log-filter {
  position: relative;

  min-width: 0;

  display: flex;
  align-items: center;
}

.associate-work-log-search > span,
.associate-work-log-filter > span {
  position: absolute;

  left: 13px;

  z-index: 2;

  width: 18px;
  height: 18px;

  display: grid;
  place-items: center;

  color:
    #64748b;

  pointer-events: none;
}

.associate-work-log-search svg,
.associate-work-log-filter svg,
.associate-work-log-reset-btn svg {
  width: 16px;
  height: 16px;

  fill: none;

  stroke:
    currentColor;

  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.associate-work-log-search input,
.associate-work-log-filter select {
  width: 100%;
  min-height: 43px;

  padding:
    0 14px 0 41px;

  border:
    1px solid #dbe4ee;

  border-radius: 11px;

  color:
    #334155;

  background:
    #ffffff;

  font: inherit;

  font-size: 11px;

  outline: none;

  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.associate-work-log-filter select {
  padding-right: 34px;

  font-weight: 720;

  cursor: pointer;
}

.associate-work-log-search input::placeholder {
  color:
    #94a3b8;
}

.associate-work-log-search input:focus,
.associate-work-log-filter select:focus {
  border-color:
    #2563eb;

  box-shadow:
    0 0 0 3px
    rgba(37, 99, 235, 0.13);
}

.associate-work-log-reset-btn {
  min-height: 43px;

  padding:
    0 13px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 7px;

  border:
    1px solid #dbe4ee;

  border-radius: 11px;

  color:
    #334155;

  background:
    #ffffff;

  font: inherit;

  font-size: 10px;
  font-weight: 830;

  white-space: nowrap;

  cursor: pointer;

  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.associate-work-log-reset-btn:hover {
  border-color:
    #bfdbfe;

  color:
    #1d4ed8;

  background:
    #eff6ff;
}


/* =====================================================
   RESULT BAR
===================================================== */

.associate-work-log-result-bar {
  padding:
    13px 23px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 16px;

  border-bottom:
    1px solid #e2e8f0;

  background:
    #ffffff;
}

.associate-work-log-result-bar > span {
  color:
    #64748b;

  font-size: 10px;
}

.associate-work-log-result-bar > strong {
  min-width: 62px;

  padding:
    5px 10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid #dbeafe;

  border-radius: 999px;

  color:
    #1d4ed8;

  background:
    #eff6ff;

  font-size: 9px;
  font-weight: 850;
}


/* =====================================================
   RESULTS
===================================================== */

.associate-work-log-results {
  min-width: 0;
}


/* =====================================================
   EXISTING WORK LOG TABLE COMPONENT
===================================================== */

.associate-work-log-results
.work-log-table-wrapper,
.associate-work-log-results
.talent-work-log-table-wrapper,
.associate-work-log-results
.work-log-table-container {
  width: 100%;

  overflow-x: auto;
}

.associate-work-log-results
table,
.associate-work-log-results
.work-log-table,
.associate-work-log-results
.talent-work-log-table {
  width: 100%;
  min-width: 1080px;

  border-collapse: collapse;
}

.associate-work-log-results
th,
.associate-work-log-results
td {
  padding:
    15px 14px;

  border-bottom:
    1px solid #e2e8f0;

  text-align: left;
  vertical-align: middle;
}

.associate-work-log-results
th {
  color:
    #64748b;

  background:
    #f8fafc;

  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.associate-work-log-results
td {
  color:
    #334155;

  font-size: 11px;
  line-height: 1.45;
}

.associate-work-log-results
tbody tr {
  transition:
    background-color 0.18s ease;
}

.associate-work-log-results
tbody tr:hover {
  background:
    #f8fbff;
}

.associate-work-log-results
tbody tr:last-child td {
  border-bottom: 0;
}

.associate-work-log-results
td strong {
  color:
    #0f172a;

  font-weight: 850;
}


/* =====================================================
   COMMON WORK LOG TABLE ROW CLASSES
===================================================== */

.associate-work-log-results
.work-log-table-row,
.associate-work-log-results
.talent-work-log-row {
  padding:
    15px 16px;

  display: grid;

  align-items: center;

  gap: 12px;

  border-bottom:
    1px solid #e2e8f0;

  background:
    #ffffff;
}

.associate-work-log-results
.work-log-table-row:last-child,
.associate-work-log-results
.talent-work-log-row:last-child {
  border-bottom: 0;
}

.associate-work-log-results
.work-log-table-row:hover,
.associate-work-log-results
.talent-work-log-row:hover {
  background:
    #f8fbff;
}


/* =====================================================
   STATUS BADGES FROM TABLE COMPONENT
===================================================== */

.associate-work-log-results
.work-log-status,
.associate-work-log-results
.talent-work-log-status,
.associate-work-log-results
[data-work-log-status] {
  width: fit-content;
  min-height: 27px;

  padding:
    4px 9px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid #e2e8f0;

  border-radius: 999px;

  color:
    #475569;

  background:
    #f8fafc;

  font-size: 9px;
  font-weight: 850;

  white-space: nowrap;
}

.associate-work-log-results
.work-log-status-draft,
.associate-work-log-results
[data-work-log-status="draft"] {
  border-color:
    #e2e8f0;

  color:
    #475569;

  background:
    #f8fafc;
}

.associate-work-log-results
.work-log-status-submitted,
.associate-work-log-results
[data-work-log-status="submitted"] {
  border-color:
    #bfdbfe;

  color:
    #1d4ed8;

  background:
    #eff6ff;
}

.associate-work-log-results
.work-log-status-revision_required,
.associate-work-log-results
.work-log-status-revision-requested,
.associate-work-log-results
[data-work-log-status="revision_required"],
.associate-work-log-results
[data-work-log-status="revision_requested"] {
  border-color:
    #fed7aa;

  color:
    #c2410c;

  background:
    #fff7ed;
}

.associate-work-log-results
.work-log-status-reviewed,
.associate-work-log-results
.work-log-status-approved,
.associate-work-log-results
[data-work-log-status="reviewed"],
.associate-work-log-results
[data-work-log-status="approved"] {
  border-color:
    #bbf7d0;

  color:
    #047857;

  background:
    #ecfdf5;
}

.associate-work-log-results
.work-log-status-rejected,
.associate-work-log-results
[data-work-log-status="rejected"] {
  border-color:
    #fecaca;

  color:
    #b91c1c;

  background:
    #fff1f2;
}


/* =====================================================
   TABLE ACTION BUTTONS
===================================================== */

.associate-work-log-results
[data-work-log-action],
.associate-work-log-results
.work-log-action-btn,
.associate-work-log-results
.talent-work-log-action-btn {
  min-height: 35px;

  padding:
    0 10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 6px;

  border:
    1px solid #dbeafe;

  border-radius: 9px;

  color:
    #1d4ed8;

  background:
    #eff6ff;

  font: inherit;

  font-size: 9px;
  font-weight: 840;

  white-space: nowrap;

  cursor: pointer;

  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease,
    transform 0.18s ease,
    opacity 0.18s ease;
}

.associate-work-log-results
[data-work-log-action]:hover,
.associate-work-log-results
.work-log-action-btn:hover,
.associate-work-log-results
.talent-work-log-action-btn:hover {
  border-color:
    #bfdbfe;

  background:
    #dbeafe;

  transform:
    translateY(-1px);
}

.associate-work-log-results
[data-work-log-action="edit"] {
  border-color:
    #e2e8f0;

  color:
    #475569;

  background:
    #f8fafc;
}

.associate-work-log-results
[data-work-log-action="submit"] {
  border-color:
    #bbf7d0;

  color:
    #047857;

  background:
    #ecfdf5;
}

.associate-work-log-results
[data-work-log-action]:disabled {
  opacity: 0.55;

  cursor: wait;

  transform: none;
}


/* =====================================================
   EMPTY STATE
===================================================== */

.associate-work-log-empty {
  min-height: 360px;

  padding:
    44px 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.associate-work-log-empty > span {
  width: 64px;
  height: 64px;

  margin-bottom: 16px;

  display: grid;
  place-items: center;

  border-radius: 19px;

  color:
    #1d4ed8;

  background:
    #eff6ff;
}

.associate-work-log-empty > span svg {
  width: 29px;
  height: 29px;

  fill: none;

  stroke:
    currentColor;

  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.associate-work-log-empty h3 {
  margin: 0;

  color:
    #0f172a;

  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.associate-work-log-empty p {
  max-width: 500px;

  margin:
    8px auto 0;

  color:
    #64748b;

  font-size: 11px;
  line-height: 1.6;
}

.associate-work-log-empty-actions {
  margin-top: 19px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;
}

.associate-work-log-empty-secondary-btn {
  min-height: 43px;

  padding:
    0 15px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid #cbd5e1;

  border-radius: 11px;

  color:
    #334155;

  background:
    #ffffff;

  font: inherit;

  font-size: 11px;
  font-weight: 830;

  cursor: pointer;

  transition:
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.associate-work-log-empty-secondary-btn:hover {
  border-color:
    #94a3b8;

  background:
    #f8fafc;
}


/* =====================================================
   LOADING
===================================================== */

.associate-work-log-loading {
  min-height:
    calc(100vh - 105px);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.associate-work-log-spinner {
  width: 38px;
  height: 38px;

  margin-bottom: 15px;

  border:
    3px solid
    rgba(37, 99, 235, 0.14);

  border-top-color:
    #2563eb;

  border-radius: 50%;

  animation:
    associate-work-log-spin
    760ms linear infinite;
}

@keyframes associate-work-log-spin {

  to {
    transform:
      rotate(360deg);
  }

}

.associate-work-log-loading strong {
  color:
    #0f172a;

  font-size: 14px;
  font-weight: 880;
}

.associate-work-log-loading p {
  margin:
    7px 0 0;

  color:
    #64748b;

  font-size: 11px;
}


/* =====================================================
   ERROR
===================================================== */

.associate-work-log-error {
  min-height:
    calc(100vh - 105px);

  padding:
    42px 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.associate-work-log-error-icon {
  width: 62px;
  height: 62px;

  margin-bottom: 16px;

  display: grid;
  place-items: center;

  border-radius: 19px;

  color:
    #b91c1c;

  background:
    #fff1f2;

  font-size: 24px;
  font-weight: 900;
}

.associate-work-log-error h1 {
  margin: 0;

  color:
    #0f172a;

  font-size:
    clamp(1.6rem, 3vw, 2.5rem);

  font-weight: 900;
  letter-spacing: -0.04em;
}

.associate-work-log-error p {
  max-width: 560px;

  margin:
    10px auto 0;

  color:
    #64748b;

  font-size: 12px;
  line-height: 1.65;
}

.associate-work-log-error-actions {
  margin-top: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;
}


/* =====================================================
   FOCUS
===================================================== */

.associate-work-log-page
button:focus-visible,
.associate-work-log-page
input:focus-visible,
.associate-work-log-page
select:focus-visible {
  outline: 0;

  box-shadow:
    0 0 0 3px
    rgba(37, 99, 235, 0.18);
}


/* =====================================================
   MEDIUM DESKTOP
===================================================== */

@media (max-width: 1180px) {

  .associate-work-log-summary-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }

  .associate-work-log-directory-header {
    grid-template-columns: 1fr;

    align-items: stretch;
  }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 850px) {

  .associate-work-log-page {
    padding: 16px;
  }

  .associate-work-log-hero {
    min-height: auto;

    padding:
      26px 22px;

    align-items: stretch;
    flex-direction: column;

    gap: 19px;
  }

  .associate-work-log-hero-actions {
    width: 100%;
  }

  .associate-work-log-refresh-btn,
  .associate-work-log-create-btn {
    flex: 1;
  }

  .associate-work-log-summary-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 10px;
  }

  .associate-work-log-toolbar {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .associate-work-log-search {
    grid-column:
      1 / -1;
  }

  .associate-work-log-reset-btn {
    width: 100%;
  }

}


/* =====================================================
   MOBILE TABLE
===================================================== */

@media (max-width: 700px) {

  .associate-work-log-results
  .work-log-table-wrapper,
  .associate-work-log-results
  .talent-work-log-table-wrapper,
  .associate-work-log-results
  .work-log-table-container {
    padding: 13px;

    overflow: visible;
  }

  .associate-work-log-results
  table,
  .associate-work-log-results
  .work-log-table,
  .associate-work-log-results
  .talent-work-log-table {
    min-width: 0;
  }

  .associate-work-log-results
  thead {
    display: none;
  }

  .associate-work-log-results
  table,
  .associate-work-log-results
  tbody,
  .associate-work-log-results
  tr,
  .associate-work-log-results
  td {
    display: block;

    width: 100%;
  }

  .associate-work-log-results
  tr {
    margin-bottom: 12px;
    padding:
      4px 14px;

    border:
      1px solid #dce5ef;

    border-radius: 15px;

    background:
      #ffffff;

    box-shadow:
      0 6px 18px
      rgba(15, 23, 42, 0.05);
  }

  .associate-work-log-results
  tr:last-child {
    margin-bottom: 0;
  }

  .associate-work-log-results
  td {
    padding:
      11px 0;

    display: grid;

    grid-template-columns:
      minmax(110px, 0.38fr)
      minmax(0, 1fr);

    align-items: center;

    gap: 12px;

    border-bottom:
      1px solid #e2e8f0;
  }

  .associate-work-log-results
  td:last-child {
    border-bottom: 0;
  }

  .associate-work-log-results
  td::before {
    content:
      attr(data-label);

    color:
      #64748b;

    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .associate-work-log-results
  [data-work-log-action] {
    width: 100%;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 560px) {

  .associate-work-log-page {
    padding: 11px;
  }

  .associate-work-log-back-btn {
    width: 100%;

    margin-bottom: 11px;
  }

  .associate-work-log-hero {
    padding:
      23px 17px;

    border-radius: 18px;
  }

  .associate-work-log-hero h1 {
    font-size:
      clamp(2rem, 11vw, 3.1rem);
  }

  .associate-work-log-hero p {
    font-size: 12px;
  }

  .associate-work-log-hero-actions {
    flex-direction: column;
  }

  .associate-work-log-refresh-btn,
  .associate-work-log-create-btn {
    width: 100%;
  }

  .associate-work-log-summary-grid {
    margin-top: 12px;

    grid-template-columns: 1fr;
  }

  .associate-work-log-summary-card {
    min-height: 92px;

    padding: 14px;
  }

  .associate-work-log-directory {
    margin-top: 12px;

    border-radius: 16px;
  }

  .associate-work-log-directory-header {
    padding:
      19px 15px;
  }

  .associate-work-log-toolbar {
    grid-template-columns: 1fr;
  }

  .associate-work-log-search {
    grid-column: auto;
  }

  .associate-work-log-result-bar {
    padding:
      12px 15px;
  }

  .associate-work-log-empty-actions,
  .associate-work-log-error-actions {
    width: 100%;

    flex-direction: column;
  }

  .associate-work-log-empty-actions
  .associate-work-log-create-btn,
  .associate-work-log-empty-secondary-btn,
  .associate-work-log-error-actions
  .associate-work-log-create-btn {
    width: 100%;
  }

  .associate-work-log-results
  td {
    grid-template-columns: 1fr;

    gap: 5px;
  }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

  .associate-work-log-back-btn,
  .associate-work-log-refresh-btn,
  .associate-work-log-create-btn,
  .associate-work-log-summary-card,
  .associate-work-log-reset-btn,
  .associate-work-log-empty-secondary-btn,
  .associate-work-log-results
  [data-work-log-action] {
    transition: none;
  }

  .associate-work-log-spinner {
    animation: none;
  }

}