html, body {
    height: 100%;
    margin: 0;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Header shadow */
}

.header-container {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 50px;
}

body {
    padding-top: 80px; /* Increased padding to accommodate fixed header */
    display: flex;
    flex-direction: column;
    min-height: 100%; /* Make body take full height */
}

/* MAIN */
.main-container {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 30px;
}

/* CARD */
.guarantee-card {
    width: 100%;
    max-width: 650px;
    border-radius: 12px;
}

/* Table Container */
.table {
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 0;
  font-size: 14px;
}

/* Table Rows */
.table tbody tr {
  transition: all 0.2s ease;
}

/* Alternate Row Color */
.table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

/* Hover Effect */
.table tbody tr:hover {
  background-color: #eef5ff;
}

/* Table Header (left side labels) */
.table th {
  width: 35%;
  background: #f1f5f9;
  font-weight: 600;
  color: #344054;
  padding: 8px;
  padding-left: 12px;
  border: none;
}

/* Table Data */
.table td {
  padding: 8px;
  border: none;
  color: #1d2939;
  font-weight: 500;
}

/* Borders between rows */
.table tbody tr {
  border-bottom: 1px solid #e4e7ec;
}

/* Badge styling (status) */
.badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* Success */
.bg-success {
  background-color: #12b76a !important;
}

/* Expired */
.bg-danger {
  background-color: #f04438 !important;
}

/* FOOTER */
footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 1px 0;
    margin-top: auto; /* Push footer to the bottom */
}