:root {
    --calendar-base: var(--pico-contrast-background);
    --pico-block-spacing-vertical: 0;
    --pico-border-radius: 0;
    --pico-text-decoration: none;
    --pico-text-decoration-hover: none;
    --pico-card-box-shadow: none;
    --pico-box-shadow: none;
    --pico-font-size: 0.875rem;
}

html {
    font-size: 0.875rem;
}

@media (prefers-color-scheme: light) {
    :root {
        --calendar-highlight: #8290B0;
        --calendar-base: #E5E7EB;
    }
}

/* Optional: Customize scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: var(--calendar-highlight);
    border-radius: 4px;
}

/* Navigation styles */
nav {
    border-bottom: 1px solid var(--calendar-highlight);
}

a {
    --pico-text-decoration: none;
    text-decoration: none;
}

.trash-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 4h-3.5l-1-1h-5l-1 1H5v2h14M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12z'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 4h-3.5l-1-1h-5l-1 1H5v2h14M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12z'/%3E%3C/svg%3E") no-repeat center;
}

.pencil-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z'/%3E%3C/svg%3E") no-repeat center;
}

/* Modal styles */
#modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--background-color);
    background: black;
    padding: 20px;
    border-radius: 8px;
    width: 90% !important;
    max-width: 1200px !important;
    min-width: 800px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

article.modal-content {
    width: 90% !important;
    max-width: 1200px !important;
    min-width: 800px;
}
