@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #ffffff;
  color: #0f172a;
}

.link-section {
  margin: 0 auto;
  font-family: "DM Sans", sans-serif;
  color: #1a1a1a;
}

.link-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 12rem;
    box-shadow: 0 8px 20px rgb(155 155 155 / 43%);
    margin-bottom: 5rem;
}

.link-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.link-header h2 {
  font-size: 2rem;
  color: #002b5c;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.link-header p {
  color: #555;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.link-form {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.form-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  width: 100%;
  max-width: 600px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.form-card h3 {
  font-size: 1.3rem;
  color: #ff6600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #002b5c;
}

.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #ff6600;
  box-shadow: 0 0 6px rgba(255, 102, 0, 0.3);
}
.shortlink-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shortlink-wrapper select {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: linear-gradient(to right, #ff6600, #ff8c1a);
  color: #000;
  width: 150px;
}
.shortlink-wrapper span {
  font-size: 1.2rem;
  color:#1a1a1a;
}
.shortlink-wrapper input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.btn-primary {
  background: linear-gradient(to right, #ff6600, #ff8c1a);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 102, 0, 0.4);
}

.btn-primary:disabled {
  background: #ccc;
  box-shadow: none;
  transform: none;
  cursor: not-allowed;
}

.link-table {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.link-table:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.link-table h3 {
  color: #002b5c;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.link-table p {
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.table-placeholder {
  background: #f8f9fc;
  border-radius: 10px;
  padding: 2rem;
  margin-top: 1.2rem;
  color: #777;
  border: 2px dashed #ddd;
  transition: all 0.3s ease;
}

.table-placeholder:hover {
  border-color: #ff6600;
  background: #fffaf5;
}

.table-placeholder i {
  font-size: 2.5rem;
  color: #ff6600;
  margin-bottom: 0.8rem;
  display: block;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.table-placeholder i {
  animation: float 3s ease-in-out infinite;
}

.links-section {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 12rem;
    box-shadow: 0 8px 20px rgb(155 155 155 / 43%);
    margin-bottom: 5rem;
}

.links-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.links-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.links-header p {
  color: #64748b;
  margin-top: 0.3rem;
  font-size: 1rem;
}

.btn-add {
  background: #ff5003;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  padding: 0.8rem 1.6rem;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-add:hover {
  background: #e04a00;
}

.links-tools {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.search-bar {
  background: #fff;
  border-radius: 5px;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #e2e8f0;
  flex: 1;
  max-width: 400px;
  transition: box-shadow 0.3s ease;
}

.search-bar:hover,
.search-bar:focus-within {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.search-bar i {
  color: #64748b;
}

.search-bar input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 1rem;
  color: #0f172a;
}

.filter-select {
  border: 1px solid #cbd5e1;
  border-radius: 15px;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  background-color: #fff;
  transition: 0.2s;
}

.filter-select:hover {
  border-color: #ff6600;
}


.links-content {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.links-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.links-content .desc {
  color: #475569;
  margin-bottom: 1.5rem;
}

.links-table table {
  width: 100%;
  border-collapse: collapse;
}

.links-table th,
.links-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.links-table th {
  color: #475569;
  font-weight: 600;
  background-color: #f9fafb;
}

.links-table td a {
  color: #ff5003;
  text-decoration: none;
  font-weight: 600;
}

.links-table td a:hover {
  text-decoration: underline;
}

.icon-btn {
  border: none;
  background: #f1f5f9;
  color: #0f172a;
  padding: 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.icon-btn:hover {
  background: #e2e8f0;
}

.icon-btn.btn-copy {
  color: rgb(215, 91, 8);
}
.icon-btn.btn-copy:hover {
  background: #e0e7ff;
  color: #004a9c;
}

.icon-btn.danger {
  color: #ff5003;
}

.icon-btn.danger:hover {
  background: #fee2e2;
}

.link-dashboard-section {
    display: flex;
    justify-content: center;
}

.link-dashboard-container {
  max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 10rem;
    box-shadow: 0 8px 20px rgb(155 155 155 / 43%);
    margin-bottom: 5rem;
}


.link-dashboard-header {
    margin-bottom: 2rem;
}

.link-dashboard-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #101241;
    margin-bottom: 0.5rem;
}

.link-dashboard-header p {
    color: #475569;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}


.link-actions {
    display: flex;
    gap: 1rem;
}


.link-list-placeholder {
    background-color: #ffffff;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    color: #64748b;
    margin-bottom: 3rem;
}

.link-list-placeholder i {
    font-size: 3rem;
    color: #ff5003;
    margin-bottom: 1rem;
}

.link-list-placeholder h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #475569;
}

.link-list-placeholder p {
    font-size: 0.95rem;
    color: #64748b;
}


.link-table-responsive {
    overflow-x: auto;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.link-table-responsive table {
    width: 100%;
    border-collapse: collapse;
}

.link-table-responsive th, .link-table-responsive td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
    font-size: 0.9rem;
}

.link-table-responsive th {
    background-color: #f1f5f9;
    color: #0f172a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.link-table-responsive tr:last-child td {
    border-bottom: none;
}

.btn-small-outline {
    background-color: transparent;
    border: 1px solid #cbd5e1;
    color: #475569;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 0.4rem;
    transition: all 0.2s ease;
}

.btn-small-outline:hover {
    background-color: #e2e8f0;
    color: #0f172a;
}

.stats-cards {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.stat-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 250px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-card i {
    font-size: 1.5rem;
    color: #ff5003;
    margin-bottom: 0.5rem;
}

.stat-card h4 {
    font-size: 1rem;
    color: #475569;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.stat-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #101241;
    margin-bottom: 0;
}

.link-header-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.link-header-placeholder {
  background: #ffffff;
  border-left: 4px solid #ff5003;
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #1e3a8a;
  font-size: 0.95rem;
  flex: 1;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.link-header-placeholder i {
  font-size: 1.2rem;
  color: #ff5003;
}
.link-header-placeholder:hover {
  background: #eef4ff;
  transform: translateY(-2px);
}

.link-actions .btn-primary {
  background: #ff5003;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
}
.link-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}


.link-create-form {
  margin-top: 2rem;
  animation: fadeIn 0.4s ease forwards;
}
.form-card {
  background: #fff;
  color: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  max-width: 600px;
  margin: 0 auto;
}
.form-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.form-group input {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  color: #1a1a1a;
  outline: none;
  background: #ebebeb
}
.btn-generate {
  background: white;
  color: #ff5003;
  border: none;
  font-weight: 700;
  border-radius: 25px;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-generate:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

.link-result {
  margin-top: 1.5rem;
  background: #ffffff;
  color: #0f172a;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.link-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.link-box input {
  flex: 1;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
}
.btn-copy {
  background: #eff0f2;
  color: white;
  border: none;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-copy:hover {
  background: #b65e05;
}

.hidden {
  display: none;
}

.link-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.link-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.link-modal {
  background: #ffffff;
  border-radius: 12px;
  width: 90%;
  max-width: 480px;
  padding: 24px 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: relative;
  animation: slideDown 0.35s ease;
}

@keyframes slideDown {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #444;
  cursor: pointer;
  transition: color 0.2s ease;
}
.modal-close:hover {
  color: #e11d48;
}

.link-modal .form-group {
  margin-top: 16px;
}
.link-modal input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
}
.link-modal .btn-generate {
  margin-top: 20px;
  background: #ff5003;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
  width: 100%;
}
.link-modal .btn-generate:hover {
  background: #e04a00;
}


.qr-list table {
  width: 100%;
  border-collapse: collapse;
}
.qr-list th, .qr-list td {
  border-bottom: 1px solid #ddd;
  text-align: left;
  padding: 0.75rem;
}
.qr-list th {
  background: #ff5003;
  color: white;
}
.qr-list td button {
  margin-right: 0.5rem;
  border: none;
  border-radius: 6px;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
}
.qr-list td a {
    color: #ff5003;
    text-decoration: none;
    font-weight: 600;
}
.view-btn { background: #0055b1; color: white; }
.download-btn { background: #28a745; color: white; }
.delete-btn { background: #dc3545; color: white; }

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup-content {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 3rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-align: center;
  animation: popIn 0.3s ease;
}

.popup-content h3 {
  color: #ff5003;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.popup-content p {
  color: #555;
  margin-bottom: 1.5rem;
}

.close-popup-btn {
  background: #fc6423;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.5rem;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.close-popup-btn:hover {
  background: #ff5003;
}

@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.qr-list, .links-table{
  overflow-x: auto;
}

#edit-shortlink-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#edit-shortlink-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

#edit-shortlink-modal-overlay .user-modal {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  width: 600px;
  height: 600px;
  max-width: 100%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
  position: relative;
  transform: translateY(-25px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#edit-shortlink-modal-overlay .user-modal::-webkit-scrollbar {
  width: 6px;
}

#edit-shortlink-modal-overlay .user-modal::-webkit-scrollbar-thumb {
  background-color: rgba(100, 116, 139, 0.3);
  border-radius: 4px;
}

#edit-shortlink-modal-overlay.active .user-modal {
  transform: translateY(0);
  opacity: 1;
}

#edit-shortlink-modal-overlay h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#edit-shortlink-modal-overlay .modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: #444;
  transition: color 0.2s ease;
}

#edit-shortlink-modal-overlay .modal-close:hover {
  color: #000;
}

#edit-shortlink-modal-overlay .form-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

#edit-shortlink-modal-overlay label {
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #334155;
}

#edit-shortlink-modal-overlay input[type="text"],
#edit-shortlink-modal-overlay input[type="url"],
#edit-shortlink-modal-overlay input[type="number"] {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

#edit-shortlink-modal-overlay input:focus {
  outline: none;
  border-color: #ff5003;
  box-shadow: 0 0 0 3px rgba(255, 80, 3, 0.15);
}

#btn-save-edit-shortlink {
  background: linear-gradient(to right, rgb(251 163 104), rgb(255, 140, 26));
  color: #fff;
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  margin-top: 0.8rem;
}

#btn-save-edit-shortlink:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 80, 3, 0.25);
}


@media (max-width: 768px) {
  #edit-shortlink-modal-overlay .user-modal {
    width: 90%;
    height: auto;
    max-height: 85vh;
  }
}

.validation-error-message {
  color: #e53935;
  font-size: 0.875em;
  margin-top: 5px;
}

.qr-list td.actions {
  text-align: left;
}

.qr-list .action-btn {
  border: none;
  background: #f1f5f9;
  color: #0f172a;
  padding: 0.5rem 0.7rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-right: 4px;
}

.qr-list .action-btn:hover {
  background: #e2e8f0;
}

.qr-list .action-btn.delete-btn {
  color: #e53935;
}

.qr-list .action-btn.delete-btn:hover {
  background: #fee2e2;
  color: #dc2626;
}

.shortlink-wrapper-modal {
  display: flex;
  gap: 8px;
}

.shortlink-wrapper-modal select {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
  background-color: #f9fafb;
  width: 150px;
}

.shortlink-wrapper-modal input {
  flex: 1;
}

.success-modal {
  text-align: center;
}

.success-icon {
  font-size: 4rem;
  color: #28a745;
  margin-bottom: 1rem;
}

.success-modal h3 {
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.success-modal p {
  color: #475569;
  margin-bottom: 1.5rem;
}

.delete-modal-content p {
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.6;
}
.delete-modal-content p strong {
    color: #0f172a;
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.modal-actions button {
    width: auto;
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-danger {
    background: #dc3545;
    color: white;
    border: none;
}
.btn-danger:hover {
    background: #c82333;
}
.btn-danger:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
    width: auto;
}
.btn-secondary:hover {
    background: #5a6268;
}

.validation-message {
  font-size: 0.875rem;
  margin-top: 8px;
  font-weight: 500;
}
.validation-message.success {
  color: #28a745;
}
.validation-message.error {
  color: #dc3545;
}

.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  gap: 4px;
}

.page-btn {
  border: 1px solid #d1d5db;
  background-color: #ffffff;
  color: #475569;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
}

.page-btn:hover {
  background-color: #f1f5f9;
  border-color: #ff5003;
  color: #ff5003;
}

.page-btn.active {
  background-color: #ff5003;
  border-color: #ff5003;
  color: #ffffff;
  z-index: 1;
}

.page-btn.disabled {
  color: #9ca3af;
  background-color: #f9fafb;
  cursor: not-allowed;
}