/* Styling for the popup */
.popup-overlay-unique {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.popup-container-unique {
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Space between the content and the button */
    width: 80%;
    max-width: 450px;
    min-width: 320px;
    min-height: 350px;
    position: relative;
}
.popup-container-unique * {
    color: black;
    font-size: 0.9em;
}
.drag-drop-instructions-unique * {
    margin-bottom: 10px;
    text-align: left;
}
.drag-drop-instructions-unique p {
    margin: 0px;
}
.drag-drop-items-unique {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    position: relative;
    height: 100px;
}
.drag-item-unique {
    width: 50px;
    height: 50px;
    background-color: lightblue;
    border: 2px solid #333;
    cursor: grab;
    position: absolute;
}
.drop-zone-unique {
    width: 60px;
    height: 60px;
    border: 2px dashed #666;
    display: inline-block;
    margin: 0 20px;
}
.completed-drop-unique {
    background-color: lightgreen;
    border-color: green;
}
#submit-button-unique {
    display: none;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1em;
}
.cancel-button-unique {
    margin-top: auto; /* Push the button to the bottom */
    padding: 10px;
    background-color: rgb(209, 68, 68); /* Or your preferred color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#countdown {
    position: absolute;
    top: 10px;       /* Adjust for desired vertical positioning */
    right: 10px;     /* Adjust for desired horizontal positioning */
    height: 60px;    /* Increase height to accommodate larger text */
    width: 60px;     /* Increase width to accommodate larger text */
    text-align: center;
}
#countdown-number {
    display: inline-block;
    line-height: 60px; /* Center text vertically */
    font-size: 15px; /* Increase font size for readability */
}
svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px; /* Match width with countdown */
    height: 60px; /* Match height with countdown */
    transform: rotateY(-180deg) rotateZ(-90deg); /* Maintain original rotation */
}
svg circle {
    stroke-dasharray: 176.71; /* Circumference for r=28 */
    stroke-dashoffset: 0px;
    stroke-linecap: round;
    stroke-width: 4px; /* Adjust stroke width */
    stroke: #359de8; /* Gold color for the circle */
    fill: none;
    animation: countdown var(--countdown-duration) linear forwards; /* Use CSS variable */
}
@keyframes countdown {
    from {
        stroke-dashoffset: 0px;
    }
    to {
        stroke-dashoffset: 176.71; /* Finish animation */
    }
}
.no-scroll {
    overflow: hidden;
}