body { 
    font-family: Arial, sans-serif; 
    margin-top: 20px; /* Reduced from 50px for better mobile spacing */
    font-size: 16px; /* Base font size for readability */
    background-color:#FFFFFF;
}

.highlight {
    color: #ff0000; 
    font-size: 18px; 
    font-weight: bold;
}

#zoom-link-copy-confirmed.hidden {
    display: none;
}

#zoom-link-copy-confirmed.visible {
    display: block;
}

/* Mobile-specific styles */
@media (max-width: 767px) {
    body {
        font-size: 18px; /* Larger base font for mobile */
        margin-top: 10px; /* Tighter top margin */
        padding: 0 15px; /* Add padding to prevent edge clipping */
    }

    h1 {
        font-size: 2rem; /* Larger heading */
    }
    h3 {
        font-size: 1.5rem; /* Larger subheading */
    }
    .countdown { /* Not used here, but included for consistency */
        font-size: 2.5rem;
        margin: 30px 0;
    }
    .btn {
        font-size: 1.1rem; /* Slightly larger button text */
        padding: 12px 20px; /* Bigger touch targets */
        margin-bottom: 10px; /* Space between elements */
        width: 100%; /* Full-width buttons for easy tapping */
    }
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    p {
        font-size: 1rem; /* Ensure paragraphs are readable */
        line-height: 1.5; /* Better line spacing */
    }
    .form-control {
        font-size: 1rem; /* Larger input text */
        padding: 12px; /* Bigger input fields for touch */
    }
    .card {
        margin-bottom: 20px; /* More space below card */
    }
}


.eg-progress {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99999;
    left: 0px;
    top: 0px;
    display: table;
    box-sizing: border-box;
    background-color: #fff9;
}

.eg-progress-wrapper {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.eg-progress-content {
    display: inline-table;
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0px 10px 30px #0003;
    background-color: #fff;
}

.eg-progress.no-shadow .eg-progress-content {
    box-shadow: none;
}

.eg-progress-animation {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 15px;
}

.eg-progress-message {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
    padding: 15px;
}

.eg-progress.has-message .eg-progress-animation {
    width: 20%;
}

.eg-progress.has-message .eg-progress-message {
    width: 80%;
}

.eg-progress.no-message .eg-progress-animation {
    width: 100%;
}

.eg-progress.no-message .eg-progress-message {
    display: none;
}

.eg-progress.no-message .eg-progress-content {
    max-width: 100px;
}

.lds-spinner {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    background: #0003;
}
.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}
@keyframes lds-spinner {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
  