body {
    background-color: #f4f4f4;
    font-family: 'Poppins', sans-serif;
}

body.dark {
    background-color: #1a1a1a;
}



header.fixed-top {
    width: 100%;
}

#tree {
    background-color: #f4f4f4;
    color: #1a1a1a;
}

.dark #tree {
    background-color: #1a1a1a;
    color: #f4f4f4;
}




.header-content {
    width: 100%;
    max-width: 500px;
    margin: auto;
}

#buzzer {
	height: 160px;
}

.buzzer-step {
	height: 160px;
    margin: auto;
    padding: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

#orderForm input[type="text"] {
    width: 60%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-transform: uppercase;
	border-radius: 20px;
	text-align: center;
}

#orderForm input::placeholder {
    text-transform: none;
}

#orderForm button {
    width: 40%;
    padding: 10px;
    margin-top: 10px;
    background-color: #f4f4f4;
    color: #1a1a1a;
    border: none;
    border-radius: 4px;
    cursor: pointer;
	border-radius: 20px;
}

.dark #orderForm button {
    background-color: #1a1a1a;
    color: #f4f4f4;
}

#orderForm button:hover {
    background-color: #aaaaaa;
}

.order-status {
	font-size: 1.7rem;
	color: #f4f4f4;

}

#order-extra {
	font-size: 1rem;
	color: #f4f4f4;
}

.dark .order-status, .dark #order-extra {
	color: #1a1a1a;
}



.error {
    border: 1px solid red !important;
}

#dot1 {
    animation-delay: 0s;
}

#dot2 {
    animation-delay: 0.5s;
}

#dot3 {
    animation-delay: 1s;
}





.link-button {
    background-color: #1a1a1a;
    color: #f4f4f4;
    width: 80%;
    padding: 10px;
    margin: 0px auto;
    border: none;
    border-radius: 4px;
    cursor: pointer;
	border-radius: 20px;
}

.dark .link-button {
    background-color: #f4f4f4;
    color: #1a1a1a;
}

.link-button:hover {
    background-color: #aaaaaa;
}


.container {
	width: 100%;
    max-width: 500px;
    margin: auto;
    background-color: white;
    padding-bottom: 20px;
}


.socialMedia a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #1a1a1a;
    text-align: center;
    line-height: 40px;
    margin-left: 7px;
    margin-right: 7px;
    text-decoration: none;
}

.dark .socialMedia a {
	color: #f4f4f4;
}

.socialMedia a:hover {
    color: #f4f4f4;
    background-color: #1a1a1a;
}

.dark .socialMedia a:hover {
    color: #1a1a1a;
    background-color: #f4f4f4;
}

.merchant-info {
	margin-bottom: 40px;
}

footer {
    padding: 50px 0px 30px 0px ;
    font-size: 0.9em;
    color: #666;
}



.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content {
    display: flex;
}

.footer-text {
    margin-bottom: 0;
    margin-right: 10px;
    position: relative;
    bottom: -3px;
    color: #000000;
}

.dark .footer-text {
    color: #ffffff;
}

.footer-content img {
    display: block;
    height: 18px;
}








.fullscreen-panel {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(244, 244, 244, 0.7);
}

.dark .fullscreen-panel {
    background-color: rgba(26, 26, 26, 0.7);
}

#closeBtn {
    position: absolute;
    top: -10px;
    right: 0px;
    z-index: 10000;
    color: black;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
}

#closeBtn i {
    color: #1a1a1a;
}


.dark #closeBtn i {
    color: #f4f4f4;
}



#imagePanelInner {
    width: 100%;
    height: 100%;
    position: relative;
    width: 100%;
    height: 100%;
}

#displayedImage {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto; /* This will center the image */
    object-fit: contain; /* Maintain aspect ratio without cropping */
    object-position: center; /* Center the image within the element */
}


.clickable-image {
    cursor: pointer;
}










.flash {
    animation: flash 1s infinite;
}

#stopButtonContainer {
    text-align: center;
    margin-top: 20px;
}

.stopButton {
    padding: 10px 20px;
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: none;
}

#stopButton:hover {
    background-color: #d32f2f;
}

