<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

.mi {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    width: 1em;
    height: 1em;
    text-align: center;
}

/* Filled Star Icon with subtle drop-shadow outline */
.mi-star:before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    mask-size: contain;
    -webkit-mask-size: contain;
    /* Add subtle outline using filter drop-shadow */
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.3));
}

/* Outline Star Icon */
.mi-star-o:before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpolygon points='12,2 15.09,8.26 22,9.27 17,14.14 18.18,21.02 12,17.77 5.82,21.02 7,14.14 2,9.27 8.91,8.26'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpolygon points='12,2 15.09,8.26 22,9.27 17,14.14 18.18,21.02 12,17.77 5.82,21.02 7,14.14 2,9.27 8.91,8.26'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    mask-size: contain;
    -webkit-mask-size: contain;
}

/* Alternative: Unicode star with text-shadow outline */
.mi-star-outlined:before {
    content: "★";
    color: currentColor;
    text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.4), 1px -1px 0 rgba(0, 0, 0, 0.4), -1px 1px 0 rgba(0, 0, 0, 0.4), 1px 1px 0 rgba(0, 0, 0, 0.4);
}

/* SVG with fixed fill and stroke colors */
.mi-star-fixed:before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z' fill='%23ffd700' stroke='%23333' stroke-width='1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Watchlist Widget Styles */
.watchlist-widget {
    display: inline-block;
    position: relative;
}

.watchlist-btn {
    background: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .watchlist-btn:hover {
        background-color: #f5f5f5;
        border-color: #bbb;
    }

    .watchlist-btn.compact {
        padding: 0;
        width: 22px;
        height: 22px;
        min-width: 22px;
        justify-content: center;
        border-radius: 4px;
    }

.star-icon {
    font-size: 14px;
    transition: all 0.2s ease;
    line-height: 15px;
}

.watchlist-btn.compact .star-icon {
    font-size: 14px;
}

.star-icon.in-watchlist {
    color: #ffd700;
    text-shadow: 0 0 2px rgba(255, 215, 0, 0.5);
}

.star-icon.not-in-watchlist {
    color: #ccc;
}

/* Modal Styles */
.watchlist-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: fadeIn 0.2s ease;
}

    .watchlist-modal.show {
        display: flex;
        align-items: center;
        justify-content: center;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: 8px;
    padding: 24px;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.2s ease;
}

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

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal-header {
    margin-bottom: 16px;
}

.modal-title {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.modal-subtitle {
    margin: 4px 0 0 0;
    font-size: 14px;
    color: #666;
}

.watchlist-options {
    margin-bottom: 20px;
}

.watchlist-option {
    display: block;
    width: 100%;
    padding: 12px;
    margin-bottom: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

    .watchlist-option:hover {
        background-color: #f0f8ff;
        border-color: #007bff;
    }

    .watchlist-option:last-child {
        margin-bottom: 0;
    }

.option-name {
    font-weight: 500;
    color: #333;
}

.option-count {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.modal-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.modal-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

    .modal-btn.primary {
        background-color: #007bff;
        color: white;
        border-color: #007bff;
    }

    .modal-btn:hover {
        background-color: #f5f5f5;
    }

    .modal-btn.primary:hover {
        background-color: #0056b3;
    }

/* Notification Styles */
.watchlist-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4caf50;
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    animation: slideInRight 0.3s ease;
    max-width: 300px;
    line-height: 1.4;
}

    .watchlist-notification.error {
        background: #f44336;
    }

    .watchlist-notification a {
        color: #fff !important;
        text-decoration: underline;
        font-size: 13px;
        display: inline-block;
        margin-top: 4px;
        transition: opacity 0.2s ease;
    }

        .watchlist-notification a:hover {
            opacity: 0.8;
        }

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-close {
    background: none;
    border: none;
    color: white;
    float: right;
    cursor: pointer;
    font-size: 16px;
    margin-left: 10px;
}


@media (max-width:768px) {
    .watchlist-btn.compact .star-icon {
        font-size: 20px
    }
}</pre></body></html>