/*
Custom CSS Classes for tailwind not working
*/

.cover-card {
  width: 275px;
  min-height: 375px;
  padding: 24px;
  border-radius: 10px;
  margin: 0 auto;
}

.cover-card__icon {
  width: 150px;
  height: 150px;
  margin-bottom: 15px;
}

.cover-card__text {
  max-width: 220px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.mission-card__icon {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
}

.cover-card-button {
  width: 180px;                /* fixed width, change if needed */
  color: white;
  background-color: #1d4ed8;   /* blue-700 */
  font-weight: 500;
  font-size: 0.975rem;         /* text-sm */
  padding: 0.625rem 1.25rem;   /* py-2.5 px-5 */
  border-radius: 0.5rem;       /* rounded-lg */
  text-align: center;
  display: inline-block;
  box-shadow: 0px 10px 20px rgba(59,130,246,0.45);
  transition: background-color 0.2s ease;
}

.cover-card-button:hover {
  background-color: #1e40af;   /* blue-800 */
}

.cover-section-headline {
  font-size: 2.25rem;      /* same as text-4xl */
  font-weight: 700;        /* font-bold */
  letter-spacing: -0.025em; /* tracking-tight */
  color: #374151;          /* text-gray-700 */
  margin-bottom: 48px;     /* more space underneath */
}

.insurance-card {
  width: 100%;
  min-height: 375px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.insurance-card-icon {
  width: 100px;
  height: auto;
}

.insurance-card-text {
  max-width: 750px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.social-icons-lg-svg {
  width: 60px;
  height: 60px;
  display: inline-block;
}

.social-icons-sm-svg {
  width: 25px;
  height: 25px;
  display: inline-block;
}

.paragraph-step-text {
  max-width: 330px;
  margin: 0 auto;
  line-height: 1.6;
}

.insurer-logo {
  height: 3rem;
  width: auto;
}

.aviva-icon:hover {
  content: url('/images/insurers/aviva-dark.png');
}

.axa-icon:hover {
  content: url('/images/insurers/axa-dark.png');
}

.vitality-icon:hover {
  content: url('/images/insurers/vitality-dark.png');
}

.bupa-icon:hover {
  content: url('/images/insurers/bupa-dark.png');
}

.exeter-icon:hover {
  content: url('/images/insurers/exeter-dark.png');
}

.nf-icon:hover {
  content: url('/images/insurers/nf-dark.png');
}

.table_component {
    overflow: auto;
    width: 100%;
}

.cover-table table {
    border: 1px solid #e5e7eb;
    height: 100%;
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 1px;
    text-align: left;
}

.cover-table caption {
    caption-side: top;
    text-align: left;
}

.cover-table th {
    border: 1px solid #e5e7eb;
    background-color: #eceff1;
    color: #000000;
    padding: 5px;
    text-align: center;
}

.cover-table td {
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    color: #000000;
    padding: 5px;
}

.partner-card {
    width: 100%;
    min-height: 300px;
    padding: 24px;
    border-radius: 10px;
}

.opening-hours-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px)  { .opening-hours-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .opening-hours-grid { grid-template-columns: repeat(7, 1fr); } }

.partner-card__icon {
    width: auto;
    height: 75px;
    margin-bottom: 15px;
}

.oh-grid { display:grid; gap:1rem; grid-template-columns: repeat(2,1fr); }
@media(min-width:640px)  { .oh-grid { grid-template-columns: repeat(4,1fr); } }
@media(min-width:1024px) { .oh-grid { grid-template-columns: repeat(7,1fr); } }