:root {
  --primary: #E91E63;
  --primary-dark: #C2185B;
  --primary-light: #F8BBD9;
  --primary-bg: #FFF5F8;
  --secondary: #7B1C40;
  --dark: #1A1A2E;
  --dark-gray: #424242;
  --gray: #757575;
  --light-gray: #F5F5F5;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-md: 0 5px 30px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 50px rgba(0,0,0,0.15);
  --radius: 20px;
  --radius-sm: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark-gray);
  background: linear-gradient(180deg, var(--primary-bg) 0%, var(--white) 20%, #FFF0F5 100%);
  min-height: 100vh;
  line-height: 1.625;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header / Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo-img {
  height: 40px;
  width: auto;
}

@media (max-width: 480px) {
  .header-logo-img {
    height: 32px;
  }
}

.header-logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--dark);
}

.header-logo-text span {
  color: var(--primary);
}

.header-logo-small {
  font-size: 11px;
  font-weight: 400;
  color: var(--gray);
  display: block;
  margin-top: -2px;
}

/* Hero Section */
.hero {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-circle {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(233,30,99,0.08) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg-circle-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(233,30,99,0.05) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 8px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--gray);
}

/* Filter Section */
.filter-section {
  padding: 20px 0 40px;
}

.filter-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  border: 1px solid rgba(0,0,0,0.04);
}

.filter-search {
  margin-bottom: 20px;
}

.search-input-wrapper {
  position: relative;
}

.search-input-wrapper svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  background: var(--light-gray);
  color: var(--dark);
  transition: all 0.3s ease;
  outline: none;
}

.search-input:focus {
  border-color: var(--primary);
  background: var(--white);
}

.search-input::placeholder {
  color: var(--gray);
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.filter-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: var(--light-gray) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23757575' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 14px center;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.filter-select:focus {
  border-color: var(--primary);
  background-color: var(--white);
}

.filter-clear {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 50px;
  background: var(--white);
  color: var(--gray);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-clear:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.filter-count {
  font-size: 14px;
  color: var(--gray);
}

.filter-count strong {
  color: var(--primary);
}

.filter-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-info-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.view-toggle {
  display: flex;
  align-items: center;
  background: var(--light-gray);
  border-radius: 50px;
  padding: 3px;
  gap: 2px;
}

.view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50px;
  background: transparent;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.25s ease;
}

.view-btn:hover {
  color: var(--dark);
}

.view-btn.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.view-btn svg {
  width: 16px;
  height: 16px;
}

.filter-update {
  font-size: 12px;
  color: var(--gray);
  white-space: nowrap;
}

.filter-update strong {
  color: var(--dark);
  font-weight: 600;
}

/* Job Cards */
.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  padding: 0 0 60px;
}

.job-grid.list {
  display: block;
  padding: 0 0 60px;
}

.job-grid.list .table-header {
  display: grid;
  grid-template-columns: 0.7fr 1.5fr 1fr 0.7fr 0.5fr 0.5fr 2.5fr 0.8fr 0.8fr 60px;
  gap: 8px;
  padding: 10px 16px;
  background: var(--light-gray);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--primary-light);
}

.job-grid.list .job-card {
  display: grid;
  grid-template-columns: 0.7fr 1.5fr 1fr 0.7fr 0.5fr 0.5fr 2.5fr 0.8fr 0.8fr 60px;
  gap: 8px;
  align-items: center;
  padding: 10px 16px;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.job-grid.list .job-card:last-child {
  border-bottom: none;
}

.job-grid.list .job-card:nth-child(even) {
  background: #FAFAFA;
}

.job-grid.list .job-card:hover {
  background: var(--primary-bg);
  transform: none;
  box-shadow: none;
}

.job-grid.list .job-card .col {
  font-size: 12px;
  color: var(--dark-gray);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.job-grid.list .job-card .col-kode {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.3px;
}

.job-grid.list .job-card .col-company {
  font-weight: 600;
  color: var(--dark);
}

.job-grid.list .job-card .col-bidang {
  color: var(--dark);
}

.job-grid.list .job-card .col-salary {
  font-weight: 600;
  color: var(--primary-dark);
}

.job-grid.list .job-card .col-deadline {
  font-size: 11px;
}

.job-grid.list .job-card .col-actions {
  display: flex;
  gap: 4px;
}

.job-grid.list .job-card .col-actions button,
.job-grid.list .job-card .col-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.job-grid.list .job-card .col-actions .btn-table-detail {
  background: var(--primary-bg);
  color: var(--primary);
}

.job-grid.list .job-card .col-actions .btn-table-detail:hover {
  background: var(--primary);
  color: var(--white);
}

.job-grid.list .job-card .col-actions .btn-table-daftar {
  background: #E8F5E9;
  color: #25D366;
}

.job-grid.list .job-card .col-actions .btn-table-daftar:hover {
  background: #25D366;
  color: white;
}

.job-grid.list .job-card .col-actions svg {
  width: 13px;
  height: 13px;
}

.job-grid.list .btn-share-card,
.job-grid.list .job-card-top,
.job-grid.list .job-card-footer,
.job-grid.list .btn-detail,
.job-grid.list .btn-daftar,
.job-grid.list .job-card-deadline,
.job-grid.list .job-card-salary-wrap,
.job-grid.list .job-card-detail {
  display: none;
}

.job-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 24px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.job-card-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.badge-open {
  background: #FCE4EC;
  color: var(--primary);
}

.job-card-company {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 6px;
  font-weight: 500;
}

.job-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.job-card-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.job-card-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
}

.job-card-detail svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--primary);
}

.job-card-detail-alur span {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--light-gray);
}

.job-card-salary-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.job-card-salary {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
}

.job-card-tipe {
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
}

.job-card-deadline {
  font-size: 12px;
  color: var(--gray);
}

.job-card-deadline strong {
  color: var(--dark);
}

.job-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.job-card-top-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.job-card-code {
  font-size: 11px;
  color: #bbb;
}

.btn-share-card {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--light-gray);
  border-radius: 50%;
  background: var(--white);
  color: var(--gray);
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.btn-share-card svg {
  width: 16px;
  height: 16px;
}

.btn-share-card:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-bg);
}

.btn-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 16px;
  padding: 12px 20px;
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary-light);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-detail:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(233,30,99,0.3);
}

.btn-daftar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 16px;
  padding: 12px 20px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-daftar:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.35);
}

.btn-daftar svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-daftar-modal {
  padding: 14px 24px;
  font-size: 15px;
  border-radius: var(--radius);
  margin-top: 0;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.btn-share-modal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border: none;
  border-radius: var(--radius);
  background: var(--light-gray);
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-share-modal:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-share-modal svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  z-index: 99999;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  text-align: center;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Empty State */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}

.empty-state svg {
  width: 80px;
  height: 80px;
  color: var(--light-gray);
  margin-bottom: 20px;
}

.empty-state h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--gray);
  font-size: 14px;
}

/* Loading */
.loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--light-gray);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading p {
  color: var(--gray);
  font-size: 14px;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 700px;
  width: 100%;
  max-height: 70vh;
  overflow-y: auto;
  scrollbar-width: thin;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  position: relative;
  animation: modalIn 0.3s ease;
}

.modal::-webkit-scrollbar {
  width: 3px;
}

.modal::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.12);
  border-radius: 999px;
}

.modal::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,0.2);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--light-gray);
  color: var(--gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.modal-close:hover {
  background: var(--primary);
  color: var(--white);
}

.modal-header {
  padding: 32px 40px 20px 32px;
  background: linear-gradient(135deg, var(--primary-bg), var(--white));
  border-radius: var(--radius) var(--radius) 0 0;
}

.modal-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  background: #FCE4EC;
  color: var(--primary);
}

.modal-code {
  font-size: 12px;
  color: #bbb;
  margin-bottom: 4px;
}

.modal-company {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 4px;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.modal-body {
  padding: 24px 40px 32px 32px;
}

.modal-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.modal-info-item {
  padding: 14px 16px;
  background: var(--light-gray);
  border-radius: var(--radius-sm);
}

.modal-info-item.full-width {
  grid-column: 1 / -1;
}

.modal-info-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray);
  margin-bottom: 4px;
}

.modal-info-value {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.6;
  white-space: pre-line;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-list li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--dark-gray);
}

.info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.6;
}

/* Pagination */
#pagination {
  display: flex;
  justify-content: center;
  padding: 10px 0 50px;
}

.pagination {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  padding: 8px 12px;
  border: 1px solid rgba(0,0,0,0.04);
}

.page-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 50px;
  background: var(--white);
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.page-btn:hover:not(.disabled) {
  border-color: var(--primary);
  color: var(--primary);
}

.page-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.page-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
}

.page-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.page-num:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.page-num.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(233,30,99,0.3);
}

/* Footer */
.footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.05);
  margin-top: 20px;
}

.footer p {
  font-size: 13px;
  color: var(--gray);
}

.footer a {
  color: var(--primary);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .pagination {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: var(--radius-sm);
    padding: 8px;
    gap: 6px;
  }

  .page-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .page-btn span {
    display: none;
  }

  .page-num {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .hero {
    padding: 120px 0 40px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-stat-number {
    font-size: 1.6rem;
  }

  .filter-wrapper {
    padding: 20px;
  }

  .filter-grid {
    grid-template-columns: 1fr;
  }

  .job-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .modal {
    margin: 10px;
    max-height: 90vh;
  }

  .modal-header {
    padding: 24px 20px 16px;
  }

  .modal-body {
    padding: 16px 20px 24px;
  }

  .modal-title {
    font-size: 20px;
  }

  .modal-info-grid {
    grid-template-columns: 1fr;
  }

  .header-logo-text {
    font-size: 16px;
  }

  .modal-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .filter-info {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .filter-info-right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    width: 100%;
  }

  .view-toggle {
    align-self: auto;
  }

  .filter-actions {
    justify-content: flex-end;
    gap: 6px;
  }

  .filter-update {
    font-size: 11px;
  }

  .filter-count {
    font-size: 13px;
  }

  .job-grid.list .table-header {
    display: none;
  }

  .job-grid.list .job-card {
    grid-template-columns: 1fr 1fr;
    gap: 4px 8px;
    padding: 10px 12px;
  }

  .job-grid.list .job-card .col-company {
    grid-column: 1 / -1;
  }

  .job-grid.list .job-card .col-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
    padding-top: 4px;
  }

  .btn-daftar-modal,
  .btn-share-modal {
    padding: 12px 16px;
    font-size: 13px;
  }

  .btn-share-card {
    width: 32px;
    height: 32px;
  }

  .btn-share-card svg {
    width: 14px;
    height: 14px;
  }

  .btn-detail {
    font-size: 13px;
    padding: 11px 16px;
  }

  .btn-daftar {
    font-size: 13px;
    padding: 11px 16px;
  }

  .pagination {
    padding: 6px;
    gap: 4px;
  }

  .page-btn {
    padding: 4px 8px;
    font-size: 11px;
  }

  .page-num {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}
