/* _content/AThinkLab.TelegramBotService/Components/CategorySearch.razor.rz.scp.css */
/* Styles that can be moved to .razor.css */
.search-wrapper[b-fbje294atw] {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input-container[b-fbje294atw] {
    position: relative;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 8px;
    cursor: text;
}

.search-icon[b-fbje294atw] {
    color: #9CA3AF;
    font-size: 16px;
    flex-shrink: 0;
}

.search-input[b-fbje294atw] {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 12px;
    font-size: 15px;
    color: #1A1A1A;
    background: transparent;
    width: 100%;
}

.clear-button[b-fbje294atw],
.toggle-button[b-fbje294atw] {
    background: none;
    border: none;
    color: #9CA3AF;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.clear-button:hover[b-fbje294atw],
.toggle-button:hover[b-fbje294atw] {
    color: #6B7280;
}

.list-item[b-fbje294atw] {
    padding: 8px;
    border-bottom: 1px solid #E5E7EB;
}

.list-item:last-child[b-fbje294atw] {
    border-bottom: none;
}

.no-results[b-fbje294atw] {
    padding: 16px;
    text-align: center;
    color: #6B7280;
}

.virtualized-list[b-fbje294atw] {
    height: 100%;
    scrollbar-width: thin;
    -ms-overflow-style: none;
    overflow-y: scroll !important;
}

@media (max-width: 768px) {
    .search-wrapper[b-fbje294atw] {
        margin: 0; /* Remove margin on mobile */
        width: 100%; /* Allow flexible width */
        flex: 1; /* Allow it to grow in flex container */
    }

    .search-input-container[b-fbje294atw] {
        background-color: white; /* Light gray background like in the image */
        border-radius: 0; /* Pill shape like in the image */
        height: 36px; /* Fixed height to match the image */
        box-shadow: none; /* Remove shadow on mobile */
    }

    .search-icon[b-fbje294atw] {
        font-size: 16px; /* Slightly smaller icon */
        color: #6B7280; /* Darker gray for better contrast */
    }

    .search-input[b-fbje294atw] {
        font-size: 16px; /* Smaller font size for mobile */
        padding: 0 8px; /* Reduced padding */
        color: #1A1A1A;
    }

    .search-input[b-fbje294atw]::placeholder {
        color: #6B7280; /* Darker placeholder text */
    }

    /* Adjust clear and toggle buttons for mobile */
    .clear-button[b-fbje294atw],
    .toggle-button[b-fbje294atw] {
        padding: 2px;
        font-size: 14px;
    }

    /* Adjust results panel for mobile */
    .search-results[b-fbje294atw] {
        border-radius: 0;
        margin-top: 0;
        height: calc(100vh - var(--search-top-offset));
        max-height: calc(100vh - var(--search-top-offset));
    }

    /* Adjust list items for mobile */
    .list-item[b-fbje294atw] {
        padding: 4px 8px; /* Slightly reduced padding */
    }

    /* Ensure the virtualized list takes full height */
    .virtualized-list[b-fbje294atw] {
        height: 100%;
    }
    
    .toggle-button[b-fbje294atw] {
        display: none;
    }
}
/* _content/AThinkLab.TelegramBotService/Components/CategorySelector.razor.rz.scp.css */
.category-wrapper[b-90plxf1vlz] {
    position: relative;
    width: 200px;
}

/* Button styling */
[b-90plxf1vlz] .rz-button-box {
    width: 100%; !important;
    text-transform: none; !important;
}

[b-90plxf1vlz] .rz-button:not(.rz-state-disabled)::before {
    background: none; !important;
}

[b-90plxf1vlz] .rz-button-box {
    width: 100%; !important;
    text-transform: none; !important;
}

[b-90plxf1vlz] .rz-button:not(.rz-state-disabled)::before {
    background: none; !important;
}

[b-90plxf1vlz] .category-button.rz-button {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.button-content[b-90plxf1vlz] {
    width: 100%;
    height: 100%;
    display: flex;
    background: white;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    gap: 8px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.button-content span[b-90plxf1vlz] {
    color: #1A1A1A;
    font-size: 0.8rem;
    flex: 1;
    text-align: left;
}

.button-content i[b-90plxf1vlz] {
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Popup styling */
.category-list[b-90plxf1vlz] {
    max-height: 300px;
    overflow-y: auto;
    padding: 8px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-list[b-90plxf1vlz]::-webkit-scrollbar {
    display: none;
}

/* Category items */
.category-item[b-90plxf1vlz] {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.category-item span[b-90plxf1vlz] {
    color: #424242;
    font-size: 0.8rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-item:hover[b-90plxf1vlz] {
    background-color: #F5F5F5;
}

.category-item:active[b-90plxf1vlz] {
    background-color: #EBEBEB;
}

@media (max-width: 480px) {
    .button-content[b-90plxf1vlz] {
        padding: 10px;
        justify-content: center;
        border-radius: 0;
        box-shadow: none;
    }
    .button-content span[b-90plxf1vlz] {
        display: none;
    }
    .category-wrapper[b-90plxf1vlz] {
        width: 48px;
        border-radius: 0;
    }
}
/* _content/AThinkLab.TelegramBotService/Components/CustomMapMarker.razor.rz.scp.css */
.marker[b-3fc5lrkll9] {
    position: relative;
    display: inline-block;
}

.location-pin[b-3fc5lrkll9] {
    text-shadow:
            calc(-1 * var(--outline-size)) calc(-1 * var(--outline-size)) 0 #fff,
            var(--outline-size) calc(-1 * var(--outline-size)) 0 #fff,
            calc(-1 * var(--outline-size)) var(--outline-size) 0 #fff,
            var(--outline-size) var(--outline-size) 0 #fff;
}

.icon-center[b-3fc5lrkll9] {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}
/* _content/AThinkLab.TelegramBotService/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-hzm1x6ac1h] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-hzm1x6ac1h] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/AThinkLab.TelegramBotService/Components/PromotionItemTemplate.razor.rz.scp.css */
.share-button[b-2vj9oz1c8v] {
    opacity: 0;
    transform: scale(0.95);
    animation: fadeIn-b-2vj9oz1c8v 0.3s ease-out forwards;
    transition: transform 0.2s ease;
    background: none;
    border: none;
    color: #9CA3AF;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.share-button:hover[b-2vj9oz1c8v] {
    color: #6B7280;
    transform: scale(1.05);
}

@keyframes fadeIn-b-2vj9oz1c8v {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.urls-list[b-2vj9oz1c8v] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    max-width: 100%;
    gap: 4px;
}

.url-item[b-2vj9oz1c8v] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    transition: opacity 0.2s ease;
}

.url-item img:hover[b-2vj9oz1c8v] {
    opacity: 0.8;
    transform: scale(1.1);
}

.url-content[b-2vj9oz1c8v] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.date-text[b-2vj9oz1c8v] {
    color: #6B7280;
    font-size: 0.75rem;
}

.result-item[b-2vj9oz1c8v] {
    margin: 4px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.result-item.selectable[b-2vj9oz1c8v] {
    cursor: pointer;
}

.result-item.selectable:hover[b-2vj9oz1c8v] {
    background-color: #EAEAEA;
}

.result-content[b-2vj9oz1c8v] {
    flex: 1;
    display: flex;
    gap: 8px;
    flex-direction: column;
    margin: 8px;
}

.result-title[b-2vj9oz1c8v] {
    font-size: 16px;
    font-weight: 500;
    color: #1A1A1A;
    margin: 0 0 4px 0;
}

.result-description[b-2vj9oz1c8v] {
    font-size: 14px;
    color: black;
    margin: 0;
}
.tag[b-2vj9oz1c8v] {
    width: fit-content;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
}

.tag.purple[b-2vj9oz1c8v] {
    background-color: #EED2FC;
    color: #AF52DE;
}

.tag.blue[b-2vj9oz1c8v] {
    background-color: #C1DEFE;
    color: #1B7CE5;
}

.tag.green[b-2vj9oz1c8v] {
    background-color: #C4F4D1;
    color: #2CA049;
}

.tag.red[b-2vj9oz1c8v] {
    background-color: #FFDFE0;
    color: #B3261E;
}

.location.clickable[b-2vj9oz1c8v] { 
    color: #737373;
    display: flex;
    align-items: center;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

.location[b-2vj9oz1c8v] {
    display: flex;
    align-items: center;
    font-size: 12px;
    margin-bottom: 8px;
}

.location i[b-2vj9oz1c8v] {
    margin-right: 8px;
}

.location.clickable:hover[b-2vj9oz1c8v] {
    background-color: #EEF2FF; /* Light indigo tint */
    transform: scale(1.02);
}

.location.clickable i[b-2vj9oz1c8v] {
    margin-right: 8px;
}
/* _content/AThinkLab.TelegramBotService/Components/PromotionMap.razor.rz.scp.css */
.map-container[b-mp04bsiiyh] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: #f5f7fa;
    z-index: 0;
}

.floating-controls[b-mp04bsiiyh] {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    gap: 12px;
    width: auto;
}

.map-content[b-mp04bsiiyh] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

@media (max-width: 768px) {
    .floating-controls[b-mp04bsiiyh] {
        top: 0;
        left: 0;
        right: 0;
        padding: 0;
        background: white;
        gap: 0;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    /* Add border to the category selector */
    [b-mp04bsiiyh] .category-wrapper {
        border-left: 1px solid #E5E7EB;
    }
}
