@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.olwso25aue.bundle.scp.css';
@import '_content/Microsoft.AspNetCore.Components.QuickGrid/Microsoft.AspNetCore.Components.QuickGrid.bundle.scp.css';

/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-x8hg3pb4tr] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-x8hg3pb4tr] {
    flex: 1;
}

.sidebar[b-x8hg3pb4tr] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-x8hg3pb4tr] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-x8hg3pb4tr]  a, .top-row[b-x8hg3pb4tr]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-x8hg3pb4tr]  a:hover, .top-row[b-x8hg3pb4tr]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-x8hg3pb4tr]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-x8hg3pb4tr] {
        justify-content: space-between;
    }

    .top-row[b-x8hg3pb4tr]  a, .top-row[b-x8hg3pb4tr]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-x8hg3pb4tr] {
        flex-direction: row;
    }

    .sidebar[b-x8hg3pb4tr] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-x8hg3pb4tr] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-x8hg3pb4tr]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-x8hg3pb4tr], article[b-x8hg3pb4tr] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Components/Pages/News.razor.rz.scp.css */
h1[b-lud5mk1gf1] {
    color: #0d6efd;
    font-weight: bold;
    margin-bottom: 30px;
}

.news-container[b-lud5mk1gf1] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.news-source-selector[b-lud5mk1gf1] {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f0f7ff;
    border: 1px solid #b8d4f1;
    border-radius: 8px;
}

.news-source-selector label[b-lud5mk1gf1] {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #0d6efd;
}

.news-source-selector .form-select[b-lud5mk1gf1] {
    max-width: 400px;
}

.category-filter[b-lud5mk1gf1] {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    flex-wrap: wrap;
}

.category-filter label[b-lud5mk1gf1] {
    font-weight: 600;
    color: #495057;
}

.category-filter .form-select[b-lud5mk1gf1] {
    max-width: 250px;
}

.article-count[b-lud5mk1gf1] {
    color: #6c757d;
    font-size: 0.9em;
    margin-left: auto;
}

.loading-container[b-lud5mk1gf1] {
    text-align: center;
    padding: 60px 20px;
}

.loading-container .spinner-border[b-lud5mk1gf1] {
    width: 3rem;
    height: 3rem;
    margin-bottom: 15px;
}

.loading-text[b-lud5mk1gf1] {
    color: #6c757d;
    font-size: 1.1em;
}

.news-grid[b-lud5mk1gf1] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.news-card[b-lud5mk1gf1] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.news-card:hover[b-lud5mk1gf1] {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.news-image-container[b-lud5mk1gf1] {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #f8f9fa;
}

    .news-image-container img[b-lud5mk1gf1] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }

.news-card:hover .news-image img[b-lud5mk1gf1] {
    transform: scale(1.05);
}

.news-content[b-lud5mk1gf1] {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-category[b-lud5mk1gf1] {
    display: inline-block;
    background-color: #0d6efd;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.news-title[b-lud5mk1gf1] {
    font-size: 1.2em;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-title a[b-lud5mk1gf1] {
    color: #212529;
    text-decoration: none;
    transition: color 0.2s;
}

.news-title a:hover[b-lud5mk1gf1] {
    color: #0d6efd;
}

.news-summary[b-lud5mk1gf1] {
    color: #6c757d;
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-footer[b-lud5mk1gf1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    margin-top: auto;
}

.news-date[b-lud5mk1gf1] {
    color: #6c757d;
    font-size: 0.85em;
}

.read-more[b-lud5mk1gf1] {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    transition: color 0.2s;
}

.read-more:hover[b-lud5mk1gf1] {
    color: #0a58ca;
}

.read-more i[b-lud5mk1gf1] {
    margin-left: 5px;
    transition: transform 0.2s;
}

.read-more:hover i[b-lud5mk1gf1] {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-grid[b-lud5mk1gf1] {
        grid-template-columns: 1fr;
    }

    .category-filter[b-lud5mk1gf1] {
        flex-direction: column;
        align-items: stretch;
    }

    .category-filter .form-select[b-lud5mk1gf1] {
        max-width: 100%;
    }

    .article-count[b-lud5mk1gf1] {
        margin-left: 0;
        text-align: center;
    }

    .news-source-selector .form-select[b-lud5mk1gf1] {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .news-container[b-lud5mk1gf1] {
        padding: 10px;
    }

    .news-card[b-lud5mk1gf1] {
        margin-bottom: 15px;
    }

    .news-image[b-lud5mk1gf1] {
        height: 180px;
    }
}
/* /Components/Pages/WeatherRss.razor.rz.scp.css */
.weather-container[b-vx9fwq1096] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.location-controls[b-vx9fwq1096] {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.location-input-group[b-vx9fwq1096] {
    margin-bottom: 0;
}

.location-input-group label[b-vx9fwq1096] {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #495057;
}

.input-with-button[b-vx9fwq1096] {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.input-with-button input[b-vx9fwq1096] {
    flex: 1;
}

.input-with-button button[b-vx9fwq1096] {
    white-space: nowrap;
}

.text-muted[b-vx9fwq1096] {
    font-size: 0.875rem;
    color: #6c757d;
}

.current-location-display[b-vx9fwq1096] {
    background: #e7f3ff;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0056b3;
}

.current-location-display i[b-vx9fwq1096] {
    font-size: 1.2rem;
}

.loading-container[b-vx9fwq1096] {
    text-align: center;
    padding: 60px 20px;
}

.loading-text[b-vx9fwq1096] {
    margin-top: 15px;
    color: #6c757d;
    font-size: 1.1rem;
}

.weather-grid[b-vx9fwq1096] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.weather-card[b-vx9fwq1096] {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.weather-card:hover[b-vx9fwq1096] {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.weather-icon[b-vx9fwq1096] {
    text-align: center;
    font-size: 5rem;
    padding: 30px 20px 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.weather-content[b-vx9fwq1096] {
    padding: 20px;
}

.weather-title[b-vx9fwq1096] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
}

.weather-temp[b-vx9fwq1096] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 10px;
}

.weather-condition[b-vx9fwq1096] {
    font-size: 1.2rem;
    color: #495057;
    margin-bottom: 15px;
    font-weight: 500;
}

.weather-description[b-vx9fwq1096] {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.weather-details[b-vx9fwq1096] {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.detail-item[b-vx9fwq1096] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #495057;
    font-weight: 500;
}

.detail-item i[b-vx9fwq1096] {
    color: #667eea;
}

.weather-footer[b-vx9fwq1096] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.weather-date[b-vx9fwq1096] {
    color: #6c757d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more[b-vx9fwq1096] {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
}

.read-more:hover[b-vx9fwq1096] {
    color: #764ba2;
}

.alert[b-vx9fwq1096] {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .weather-grid[b-vx9fwq1096] {
        grid-template-columns: 1fr;
    }

    .input-with-button[b-vx9fwq1096] {
        flex-direction: column;
    }

    .input-with-button button[b-vx9fwq1096] {
        width: 100%;
    }

    .weather-details[b-vx9fwq1096] {
        flex-direction: column;
        gap: 10px;
    }
}
/* /Components/Shared/ConfirmDialog.razor.rz.scp.css */
.modal-backdrop[b-o5w3fjfuvt] {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal[b-o5w3fjfuvt] {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.modal-dialog-centered[b-o5w3fjfuvt] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100% - 1rem);
}

.modal-content[b-o5w3fjfuvt] {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.modal-header[b-o5w3fjfuvt] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.modal-title[b-o5w3fjfuvt] {
    margin: 0;
    line-height: 1.5;
}

.modal-body[b-o5w3fjfuvt] {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer[b-o5w3fjfuvt] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer > *[b-o5w3fjfuvt] {
    margin: 0.25rem;
}
/* /Components/Shared/DigitalWatch.razor.rz.scp.css */
/*-------------------------------------------*/
/*  Digital Clock                            */
/*-------------------------------------------*/
.digiWatch[b-8ashl8b6ct] {
    /*height: 100%;*/
    width: 260px;
    color: #abcdef;
    font-size: 32px;
    background-image: linear-gradient(to bottom, #000000, #999999);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    border: solid #1f628d 4px;
    margin: 0 auto 0;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    text-decoration: none;
}

.digiWatch2[b-8ashl8b6ct] {
    width: 240px;
    color: #abcdef;
    font-size: 32px;
    background-image: linear-gradient(to bottom, #000000, #999999);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    border: solid #1f628d 4px;
    margin: 0 auto 0;
    position: relative;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
    text-decoration: none;
}

.translator[b-8ashl8b6ct] {
    font-size: 20px;
    -webkit-transform: scaleX(1.5);
    -moz-transform: scaleX(1.5);
    -ms-transform: scaleX(1.5);
    -o-transform: scaleX(1.5);
    transform: scaleX(1.5);
}
/* /Components/Shared/PureBlazorCarousel.razor.rz.scp.css */
/* Pure Blazor Carousel Styles (Bootstrap-compatible) */

.carousel-container[b-dhpfxie7au] {
    position: relative;
    width: 100%;
}

.carousel-inner[b-dhpfxie7au] {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 500px; /* Desktop height */
}

.carousel-item[b-dhpfxie7au] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-item.active[b-dhpfxie7au] {
    opacity: 1;
    z-index: 1;
}

.carousel-item img[b-dhpfxie7au] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Carousel Controls */
.carousel-control-prev[b-dhpfxie7au],
.carousel-control-next[b-dhpfxie7au] {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: none;
    border: 0;
    opacity: 0.5;
    transition: opacity 0.15s ease;
    cursor: pointer;
}

.carousel-control-prev:hover[b-dhpfxie7au],
.carousel-control-next:hover[b-dhpfxie7au] {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
}

.carousel-control-prev[b-dhpfxie7au] {
    left: 0;
}

.carousel-control-next[b-dhpfxie7au] {
    right: 0;
}

/* Control Icons */
.carousel-control-prev-icon[b-dhpfxie7au],
.carousel-control-next-icon[b-dhpfxie7au] {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}

.carousel-control-prev-icon[b-dhpfxie7au] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon[b-dhpfxie7au] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Carousel Caption */
.carousel-caption[b-dhpfxie7au] {
    position: absolute;
    right: 15%;
    bottom: 1.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0.25rem;
}

.carousel-caption p[b-dhpfxie7au] {
    margin-bottom: 0;
    font-size: 1.25rem;
}

/* Visually Hidden (for accessibility) */
.visually-hidden[b-dhpfxie7au] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .carousel-inner[b-dhpfxie7au] {
        height: 300px; /* Mobile height */
    }

    .carousel-control-prev[b-dhpfxie7au],
    .carousel-control-next[b-dhpfxie7au] {
        width: 10%;
    }

    .carousel-caption[b-dhpfxie7au] {
        font-size: 0.875rem;
    }

    .carousel-caption p[b-dhpfxie7au] {
        font-size: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .carousel-inner[b-dhpfxie7au] {
        height: 400px; /* Tablet height */
    }
}
