/* Progress header */
.progress-header {
    background-color: rgb(11, 212, 51);
    color: #fff;
    margin-top: 1px;
    margin-bottom: 1em;
}

/* Hover states */
.markdown-container a:hover,
.btn:hover,
.radio-button-strip label:hover span {
    background-color: #000;
    color: #fff;
    text-decoration: none;
}

/* Buttons / links */
.markdown-container a,
.btn,
.radio-button-strip label span {
    font-weight: normal;
    text-decoration: none;

    background-color: #fff;
    color: #000;
    border: 1px solid rgb(11, 212, 51);
    border-radius: 8px;

    cursor: pointer;
    display: inline-block;
    vertical-align: middle;

    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    line-height: 1em;

    padding: 0.5em 1em;
    min-width: 3.5em;
    text-align: center;
    white-space: nowrap;

    position: relative;
    overflow: hidden;

    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Breadcrumbs */
ul.breadcrumb li {
    display: block;
    float: left;
    color: #000;
    margin-right: 2em;
    position: relative;
}

ul.breadcrumb li.current::after {
    content: "";
    position: absolute;
    left: 1px;
    right: 1px;
    bottom: -2px;
    height: 3px;
    background-color: #fff;
}

/* Postcode input */
.composite-address-input .postcode-input {
    position: absolute;
    left: 0;
    top: 0;

    line-height: 49px;
    font-size: 1.2em;
    color: rgb(11, 212, 51);

    padding: 0 10px;
    margin: 0;
    border: none;
    border-radius: 5px;

    text-transform: uppercase;
    overflow: hidden;
}

.list-panel {
    display: block;
    background-color: rgb(11, 212, 51);
    border-radius: 8px;

    padding: 20px 15px 20px 20px;
    margin-bottom: 15px;
}

body {
    padding-top: 0;
    padding-bottom: 0;
    transition: padding 0.6s;

    font-family: 'Lato', sans-serif;
    line-height: 1.15;

    background-color: #fff;
    color: #fff;
}

.skip-capacity {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background-color: #000;
    color: white;
    text-align: center;
}

.wheely-bins {
    width: 50px;
    height: 82px;

    background-image: url("../images/wheelybin.png");
    background-position: center;
    background-repeat: no-repeat;

    text-align: center;
    font-weight: bold;
    padding-right: 2px;
    color: #fff;
}

.custom-calendar table.calendar-table td {
    position: relative;

    display: table-cell;
    text-align: center;
    vertical-align: middle;

    height: 5em;
    padding: 5px 10px;

    font-size: inherit;
    color: #999;

    border: 1px solid rgb(11, 212, 51);
    border-radius: 10px;

    background: linear-gradient(
        to top left,
        rgba(52, 139, 65, 0) 0%,
        rgba(52, 139, 65, 0) calc(50% - 2px),
        #ddd 50%,
        rgba(52, 139, 65, 0) calc(50% + 2px),
        rgba(52, 139, 65, 0) 100%
    );

    transition: height 0.6s, font-size 0.6s;
}

.custom-calendar table.calendar-table td.today {
    background: none;
    background-color: #000; /* black */
    border-color: #fff;     /* white */
    color: white;
}

.custom-calendar table.calendar-table td.isSelectable {
    background-color: rgb(11, 212, 51);
}

.custom-calendar table.calendar-table td.isSelectable:hover {
    background-color: rgb(9, 171, 41);
    border-color: black;
}


table.striped tr {
    background-color: rgb(11, 212, 51);
}

table.striped tr:nth-child(even) {
    background-color: lightgrey;
}

#review-form > div.container > div:nth-child(1) > div > h2 {
    color: #000; /* black text */
}

body {
    padding-top: 0;
    padding-bottom: 0;
    transition: padding 0.6s;
    font-family: 'Lato', sans-serif;
    line-height: 1.15;
    background-color: #fff;
    color: #000;
}


.customcheck:checked ~ .customcheck-o {
    background-color: rgb(11, 212, 51);
}

.customcheck ~ .customcheck-o .fa-check {
    opacity: 0;
    position: relative;
    font-size: 18px;
    left: 2px;
    top: 2px;
    color: #000;
}

.customcheck-o {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background-color: white;
    border: 1px solid #000;
}

.btn.btn-primary {
    color: #fff;
    background-color: rgb(11, 212, 51);
    border-color: rgb(11, 212, 51);
}

.btn.btn-primary:hover {
    color: #fff;
    background-color: rgb(9, 171, 41);
    border-color: rgb(11, 212, 51);
}

.customcheck-label:hover > .customcheck-o {
    background-color: rgb(11, 212, 51);
    border-color: #000; /* blue outline? you can adjust to black here */
}

.success-block {
    background-color: rgb(9, 171, 41);
    color: white;
}

.info-block {
    background-color: rgb(9, 171, 41);
}

.navbar {
    background-color: rgb(11, 212, 51) !important;
    color: white !important;
}

.list-panel {
    display: block;
    background-color: rgb(11, 212, 51);
    border-radius: 40px;
    padding: 20px 15px 20px 20px;
    margin-bottom: 15px;
}

/* Buttons / links */
.markdown-container a,
.btn,
.radio-button-strip label span {
    font-family: 'Lato', sans-serif;
    font-weight: normal;
    font-size: 0.875rem;
    line-height: 1em;
    
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    
    padding: 0.5em 1em;
    min-width: 3.5em;
    
    background-color: #fff;
    color: #000;
    border: 1px solid rgb(11, 212, 51);
    border-radius: 30px;
    
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Buttons / links */
.markdown-container a,
.btn,
.radio-button-strip label span {
    font-family: 'Lato', sans-serif;
    font-weight: normal;
    font-size: 0.875rem;
    line-height: 1em;
    
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    
    padding: 0.5em 1em;
    min-width: 3.5em;
    
    background-color: #fff;
    color: #000;
    border: 1px solid rgb(11, 212, 51);
    border-radius: 30px;
    
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Calendar table cells */
.custom-calendar table.calendar-table td {
    display: table-cell;
    position: relative;
    text-align: center;
    vertical-align: middle;
    
    height: 5em;
    padding: 5px 10px;
    font-size: inherit;
    color: #999;
    
    border: 1px solid rgb(11, 212, 51);
    border-radius: 40px;
    background: linear-gradient(
        to top left,
        rgba(52, 139, 65, 0) 0%,
        rgba(52, 139, 65, 0) calc(50% - 2px),
        #ddd 50%,
        rgba(52, 139, 65, 0) calc(50% + 2px),
        rgba(52, 139, 65, 0) 100%
    );
    
    transition: height 0.6s, font-size 0.6s;
}

@media (max-width: 360px) {
  .custom-calendar table.calendar-table td {
    height: 44px;           /* touch-friendly */
    padding: 4px;
    font-size: 0.85rem;     /* readable at 325px */
    vertical-align: middle;
  }

}

h1 .alt,
h2 .alt,
h3 .alt,
h4 .alt,
h5 .alt {
    font-weight: normal;
    color: rgb(11, 212, 51) !important;
}


.image-container {
    display: inline-block;
    position: relative;
    width: 8rem;
    height: 8rem;
    margin-right: 0.5rem;
    vertical-align: bottom;
}


/* Target actual button surfaces */
body > div.landing-root > div:nth-child(1) > div,
body > div.landing-root > div:nth-child(2) > div,
body > div.landing-root > div.home-panel.home-exchange.dw25.nw50 > div {

  transition:
    transform 0.35s cubic-bezier(.4,0,.2,1),
    box-shadow 0.35s cubic-bezier(.4,0,.2,1),
    filter 0.35s ease;

  will-change: transform;
}

body > div.landing-root > div:nth-child(1) > div:hover,
body > div.landing-root > div:nth-child(2) > div:hover,
body > div.landing-root > div.home-panel.home-exchange.dw25.nw50 > div:hover {

  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 18px 45px rgba(0,0,0,0.28);
  filter: brightness(1.08);
}

body > div.landing-root {
  display: flex;
  justify-content: center;   /* horizontal centering */
  align-items: center;       /* vertical centering */
  gap: 2rem;                 /* space between buttons */
}


.full-page-overlay .dialog-container .dialog-title {
position: relative;
margin: 0;
padding: 10px 15px 7px 15px;
background-color: rgb(11, 212, 51);
color: white;
}