/* FULL WIDTH WRAPPER */
.fullwidth-slider {
    width: auto;
    overflow: hidden;
}

/* SLIDER ITEM */
.tp-slider__item {
    width: auto;
    height: 720px;                  /* CONTROL HEIGHT HERE */
    background-size: cover;         /* cover / contain */
    background-position: center;
    background-repeat: no-repeat;
}

/* MOBILE HEIGHT */
@media (max-width: 768px) {
    .tp-slider__item {
        height: 260px;
    }
}

  /* Container styling */
.table-container {
margin: 20px 0;
border-radius: 8px;
overflow: hidden; /* Rounds the corners of the table */
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.table {
width: 100%;
border-collapse: collapse;
background-color: #ffffff;
font-family: 'Inter', sans-serif; /* Or any clean sans-serif */
color: #333;
}

/* Header styling */
.table thead {
background-color: #f8f9fa;
border-bottom: 2px solid #eceeef;
}

.table th {
padding: 16px;
text-align: left;
font-weight: 600;
text-transform: uppercase;
font-size: 0.85rem;
letter-spacing: 0.05em;
color: #6c757d;
}

/* Body styling */
.table td {
padding: 16px;
border-bottom: 1px solid #f0f0f0;
vertical-align: middle;
}

/* Hover effect */
.table tbody tr:hover {
background-color: #fcfcfc;
}

/* Link styling */
.table td a {
color: #007bff;
text-decoration: none;
font-weight: 500;
transition: color 0.2s;
}

.table td a:hover {
color: #0056b3;
text-decoration: underline;
}

/* Price/Amount styling */
.amount {
font-weight: 600;
color: #2d3436;
}

/* Making it responsive */
@media (max-width: 600px) {
.table {
  display: block;
  overflow-x: auto;
}
}

.tp-preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid #e5e5e5;
  border-top: 5px solid #5392FB; /* primary color */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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