
.classy-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #343a40; /* Dark background */
    border: 2px solid #343a40;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.classy-button:hover {
    background-color: #fff;
    color: #343a40;
    border-color: #343a40;
}

.classy-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 58, 64, 0.5); /* Focus ring */
}
form {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
}
label {
    display: block;
    margin-bottom: 10px;
}
input, select, textarea {
    /*width: ;*/
    padding:
            10px;
    margin-bottom: 20px;
}
select {
    width: auto;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color:var(--dropdown-background-color);
    color: var(--base-color);
    font-size: 16px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-position: right 10px center;
}
select:hover {
    /*background-color: var(--cnvs-themecolor);*/
}
select:focus {
    outline: none;
    background-color: var(--dropdown-background-color);
    color: var(--base-color)
}
.select-wrapper {
    position: relative;
    width: 100%;
}
.flavors input[type="checkbox"] {
    display: inline-block;
    width: auto;
}
.flavors label {
    display: inline-block;
    margin-right: 10px;
}
.calendar {
    width: 100%;
    max-width: 600px;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: white;
}
.calendar header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--cnvs-themecolor);
    color: white;
    padding: 20px;
}
.calendar header h1 {
    margin: 0;
    font-size: 24px;
}
.calendar header button {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}
.calendar table {
    width: 100%;
    border-collapse: collapse;
}
.calendar table th, .calendar table td {
    width: 14.28%;
    padding: 10px;
    text-align: center;
}
.calendar table th {
    background-color: #f4f4f4;
}
.calendar table td {
    cursor: pointer;
    transition: background-color 0.3s;
}
.calendar table td:hover {
    background-color: #eaeaea;
}
.calendar table td.today {
    background-color:#F4F3DD;
    color: white;
}
.calendar table td.selected {
    background-color: var(--base-color);
    color: white;
}
.calendar table td.disabled {
    cursor: not-allowed;
    color: #ccc;
}
.pickup-time {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
    padding: 20px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.pickup-time h2 {
    margin-top: 0;
}
.pickup-time label {
    display: block;
    margin-bottom: 10px;
}
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.radio-group input[type="radio"] {
    display: none;
}
.radio-group label {
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}
.radio-group input[type="radio"]:checked + label {
    background-color: var(--base-color);
    color: white;
    /*border-color: black;*/
}

input[type="radio"]:checked  {
    background-color: var(--base-color);
    color: white;
    border-color:black
    /*border-color: black;*/
}


.carousel1 {
    height: 630px;
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 1;
}


.frosting-colour-section {
    margin: 20px;
}

.frosting-label {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 10px;
}

.frosting-label span {
    color: red;
}

.frosting-note {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 20px;
}

.frosting-colours {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wc-pao-addon-image-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border: 1px solid #ccc;
    overflow: hidden;
    transition: transform 0.3s;
}

.placeholder {
    width: 100%;
    height: 80%;
}

.wc-pao-addon-image-swatch span {
    display: block;
    font-size: 0.8em;
    text-align: center;
    margin-top: 5px;
    color: #333;
}

.wc-pao-addon-image-swatch:hover {
    transform: scale(1.1);
}


.pickUpRadio{
    height:30px;
    width:40px;
}
.selectBoxes{
    width:50px;
    height:20px
}

.color-box {
    width: 60px;
    height: 60px;
    cursor: pointer;
    margin: 5px;
    display: inline-block;
}
.selected {
    border: 3px solid black;
}
.color-display {
    margin-top: 20px;
    font-weight: bold;
}
.note {
    font-size: 0.9em;
    color: grey;
}

.custom-radio-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.custom-radio {
    display: none;
}

.custom-radio + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

.custom-radio + label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background-color: white;
}

.custom-radio:checked + label::before {
    border-color: green;
}

.custom-radio:checked + label::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: green;
}
.cake-details {
    border: 1px solid #ccc;
    padding: 20px;
    width: 300px;
}
.cake-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.subtotal {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    margin-top: 10px;
    border-top: 1px solid #ccc;
    padding-top: 10px;
}
.add-to-cart button {
    background-color: gold;
    border: none;
    padding: 10px;
    cursor: pointer;
}
