html{
    background: #e5e5e5;
    color: black;
    background: url('/Images/72224.jpg');
    background-size: 100% auto;
    background-repeat: repeat-y;
}
.container{
    margin-top: 1em;
    background: white;
    border: solid 1px red;
    min-height: 30em;
    background-color: #f5deb3; /* Base color resembling parchment */
    background-image: 
        radial-gradient(circle, rgba(255,255,255,0.5) 10%, transparent 10%),
        radial-gradient(circle, rgba(255,255,255,0.5) 10%, transparent 10%);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    border: 1px solid #d2b48c; /* Border color similar to aged parchment edges */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Optional: adds a subtle shadow for depth */
    padding: 20px; /* Optional: adjusts spacing inside the element */
    color: #4b3f2f; /* Optional: text color that pairs well with the parchment background */
    border-radius: 10px; /* Optional: softens the edges */
}
.title{
    font-family: 'Rancho', cursive; 
    
}
h2{
    margin-top: 1rem;
    margin-bottom: 0.25rem;
}
.order-header{
    display:block;
    font-size: 1.3em;
    height: 3em;
    vertical-align: middle;
    text-align: center;
    padding-right: 2em;
    margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .order-header{
      padding: 0;
      
  }
 .order-options{
     text-align: center;
 }   
}
.order-option{
    border: solid 1px #aaa;
    background: #eee;
    display: inline-block;
    border-radius: 10px;
    width: 10em;
    height: 8em;
    text-align: center;
    padding: 1em;
    margin: 0.5em;
    vertical-align: top;
}
.order-option-selected{
    border: solid 1px #176287;
    filter: drop-shadow(0px 0px 5px #176287);
}    
.order-option-header{
    font-size: 14pt;
}
.order-option-body{
    font-size: 10pt;
}
.custom-bullet {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #0f6b28; /* Bullet color */
    border-radius: 50%; /* Make it round */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); /* Add a subtle shadow */
    margin-right: 10px; /* Space between bullet and text */
    vertical-align: middle; /* Align with text */
}

.christmas-button {
    background-color: #c0392b; /* Festive red background */
    color: white; /* White text color */
    border: 2px solid #e74c3c; /* Slightly darker red border */
    border-radius: 8px; /* Rounded corners */
    padding: 10px 20px; /* Padding for a nice size */
    font-size: 16px; /* Text size */
    font-family: 'Arial', sans-serif; /* Simple, clean font */
    font-weight: bold; /* Bold text */
    text-transform: uppercase; /* Capitalize text */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transitions */
    position: relative;
}

.christmas-button::before {
    content: '🎄'; /* Christmas tree emoji */
    position: absolute;
    left: -30px; /* Adjust position */
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px; /* Adjust size */
}

.christmas-button:hover {
    background-color: #e74c3c; /* Darker red on hover */
    transform: scale(1.05); /* Slight zoom on hover */
}