html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Better spacing inside rows */
#winnersTable tbody td {
    padding: 12px 10px !important;
    vertical-align: middle;
}

/* Add soft border between rows */
#winnersTable tbody tr {
    border-bottom: 2px solid #f1f1f1 !important;
}

/*Hover highlight*/
#winnersTable tbody tr:hover {
    background-color: #ffd3d3 !important;
    cursor: pointer;
}

/* Improve header look */
#winnersTable thead th {
    background: #fe6564;
    color: white;
    text-align: center;
    font-weight: 600;
    padding: 12px 8px;
}

/* Customer image rounded and clean */
.custImage {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: transform 0.2s ease;
}

     Image hover zoom 
    .custImage:hover {
        transform: scale(1.05);
    }

