/* Global Styles */
body {
    background-color: #FFFFFF; /* colour01 */
    color: #000000; /* colour02 */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Container for custom options */
.cpo-custom-options {
    background-color: #FFFFFF; /* colour01 */
    border: 1px solid #808080; /* colour03 */
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

/* Heading for options */
.cpo-options-heading {
    color: #000000; /* colour02 */
    font-size: 18px;
    margin-bottom: 15px;
}

/* Individual option */
.cpo-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #808080; /* colour03 */
    margin-bottom: 10px;
    border-radius: 6px;
    background-color: #FFFFFF; /* colour01 */
}

/* Checkbox for options */
.cpo-option-checkbox {
    margin-right: 10px;
    accent-color: #FFA500; /* colour04 */
}

/* Name of the option */
.cpo-option-name {
    font-size: 16px;
    color: #000000; /* colour02 */
}

/* Price of the option */
.cpo-option-price {
    font-size: 14px;
    color: #FFA500; /* colour04 */
    font-weight: bold;
}

/* Total Price Container */
.cpo-total-price-container {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #000000; /* colour02 */
}

/* Centralized Button Styling */
button {
    background-color: #FFA500; /* colour04 */
    color: #FFFFFF; /* colour01 */
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    margin: 10px auto;
}

button:hover {
    background-color: #FF8C00; /* Darker shade of orange for hover */
}

/* More Options Button */
.more-options-button {
    background-color: #FFA500; /* colour04 */
    color: #FFFFFF; /* colour01 */
    padding: 10px 20px;
    font-size: 16px;
    text-align: center;
    display: inline-block;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.more-options-button:hover {
    background-color: #FF8C00; /* Darker orange */
}
