.open-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.open-indicator > span {
    font-weight: 500;
}
.open-indicator > .open-status {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 100%;
}
.open-indicator > .open-status.open {
    background-color: green;
}
.open-indicator > .open-status.closed,
.open-indicator > .open-status.break {
    background-color: red;
}

/* Popup Overlay */
.praktijk-open-popup-overlay {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-in-out;
}

/* Popup Box */
.praktijk-open-popup {
    background: #ffffff;
    width: 90vw;
    max-width: 800px;
    max-height: 80vh;
    max-height: 80dvh;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    overflow: auto;
    position: relative;
    padding: 20px;
    animation: slideIn 0.3s ease-in-out;
}

/* Close Button */
.praktijk-open-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    --icon-size: 16px;
    --icon-padding: 7px;
    --icon-color: #ffffff;
    --icon-bg-color: #FF5A6C;
    --icon-bg-hover-color: #e64444;
    --icon-radius: 50%;
}

.praktijk-icon:hover {
    background-color: var(--icon-bg-hover-color);
}

.praktijk-icon {
    --icon-total: calc(var(--icon-padding) * 2 + var(--icon-size));

    color: var(--icon-color);
    width: var(--icon-total);
    height: var(--icon-total);
    background-color: var(--icon-bg-color);
    display: flex;
    font-size: var(--icon-size);
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: var(--icon-size);
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    align-items: center;
    justify-content: center;
    border-radius: var(--icon-radius);
    transition: background-color 0.2s ease-in-out;
}

.praktijk-icon.close::after {
    content: "\2715";
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (min-width: 768px) {
    .praktijk-open-popup {
        width: 75vw;
    }
}

@media (min-width: 1024px) {
    .praktijk-open-popup {
        width: 50vw;
    }
}
