/* _content/MartinKulev/Pages/Index/Index.razor.rz.scp.css */
.image-collage[b-msdwvb4npf] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 40%;
    margin: 0 auto;
    min-width: 250px;
}

.collage-image[b-msdwvb4npf] {
    width: 100%;
    height: auto;
    border-radius: 3%;
}

@keyframes bounce-b-msdwvb4npf {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.bi-cup-straw[b-msdwvb4npf] {
    display: inline-block;
    animation: bounce-b-msdwvb4npf 1s ease-in-out infinite;
}
/* _content/MartinKulev/Pages/LifeEvents/LifeEvents.razor.rz.scp.css */
.timeline[b-705i0ofd2w] {
    position: relative;
    max-width: 1000px;
    margin: auto;
    padding: 2rem 0;
}

    .timeline[b-705i0ofd2w]::after {
        content: '';
        position: absolute;
        width: 4px;
        background-color: #444444;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }

/* _content/MartinKulev/Pages/Projects/ProjectDetails.razor.rz.scp.css */
.details-container[b-5m4mw5qrna] {
    display: flex;
    gap: 2rem;
    padding: 2rem;
}

.readme-section[b-5m4mw5qrna] {
    flex: 1;
    min-width: 0;
}

.readme-content[b-5m4mw5qrna] {
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #ddd;
    overflow-x: auto;
    max-height: 80vh;
    white-space: pre-wrap;
}

.info-section[b-5m4mw5qrna] {
    flex: 0 0 auto;
    width: max-content;
    background-color: #fff;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.language-list[b-5m4mw5qrna] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.language-item[b-5m4mw5qrna] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.25rem 0;
    position: relative;
    padding-left: 1.2rem;
}

    .language-item[b-5m4mw5qrna]::before {
        content: "";
        display: inline-block;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        background-color: #ccc;
    }

.lang-csharp[b-5m4mw5qrna]::before {
    background-color: #178600;
}

.lang-cpp[b-5m4mw5qrna]::before {
    background-color: #f34b7d;
}

.lang-fsharp[b-5m4mw5qrna]::before {
    background-color: #b845fc;
}

.lang-javascript[b-5m4mw5qrna]::before {
    background-color: #f1e05a;
}

.lang-html[b-5m4mw5qrna]::before {
    background-color: #e34c26;
}

.lang-css[b-5m4mw5qrna]::before {
    background-color: #563d7c;
}

.lang-python[b-5m4mw5qrna]::before {
    background-color: #3572A5;
}

.lang-typescript[b-5m4mw5qrna]::before {
    background-color: #2b7489;
}

.lang-java[b-5m4mw5qrna]::before {
    background-color: #b07219;
}

@media (max-width: 600px) {
    .details-container[b-5m4mw5qrna] {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .info-section[b-5m4mw5qrna],
    .readme-section[b-5m4mw5qrna] {
        width: 100%;
        flex: unset;
    }
}
/* _content/MartinKulev/Pages/Projects/Projects.razor.rz.scp.css */
.project-grid[b-x6zsl4oud8] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 2fr));
    gap: 5rem;
    padding: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.project-card h3[b-x6zsl4oud8] {
    margin-top: 0;
    font-size: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.project-card[b-x6zsl4oud8] {
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 10px;
    background-color: #f9f9f9;
    transition: box-shadow 0.3s;
    cursor: pointer;
}

    .project-card:hover[b-x6zsl4oud8] {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .project-card h3[b-x6zsl4oud8] {
        margin-top: 0;
    }

    .project-card a[b-x6zsl4oud8] {
        color: #007bff;
        text-decoration: none;
    }

        .project-card a:hover[b-x6zsl4oud8] {
            text-decoration: underline;
        }

.language[b-x6zsl4oud8] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

    .language[b-x6zsl4oud8]::before {
        content: "";
        display: inline-block;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ccc;
    }

.lang-csharp[b-x6zsl4oud8]::before {
    background-color: #178600;
}

.lang-cpp[b-x6zsl4oud8]::before {
    background-color: #f34b7d;
}

.lang-fsharp[b-x6zsl4oud8]::before {
    background-color: #b845fc;
}


.lang-javascript[b-x6zsl4oud8]::before {
    background-color: #f1e05a;
}

.lang-html[b-x6zsl4oud8]::before {
    background-color: #e34c26;
}

.lang-css[b-x6zsl4oud8]::before {
    background-color: #563d7c;
}

.lang-python[b-x6zsl4oud8]::before {
    background-color: #3572A5;
}

.lang-typescript[b-x6zsl4oud8]::before {
    background-color: #2b7489;
}

.lang-java[b-x6zsl4oud8]::before {
    background-color: #b07219;
}
/* _content/MartinKulev/Pages/TechStack/TechStack.razor.rz.scp.css */
.techstack-section[b-r568wzxlec] {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
}

.intro-text[b-r568wzxlec] {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.tech-grid[b-r568wzxlec] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
/* _content/MartinKulev/Shared/Components/LinkTreeItem.razor.rz.scp.css */
.btn-github[b-he7avqnpck] {
    border: 2px solid #211F1F;
    color: #211F1F;
    font-size: 1.2rem;
}

    .btn-github:hover[b-he7avqnpck] {
        background-color: #211F1F;
        color: white;
    }

.btn-linkedin[b-he7avqnpck] {
    border: 2px solid #0077b5;
    color: #0077b5;
    font-size: 1.2rem;
}

    .btn-linkedin:hover[b-he7avqnpck] {
        background-color: #0077b5;
        color: white;
    }

.btn-gmail[b-he7avqnpck] {
    border: 2px solid #ea4335;
    color: #ea4335;
    font-size: 1.2rem;
}

    .btn-gmail:hover[b-he7avqnpck] {
        background-color: #ea4335;
        color: white;
    }

.btn-x[b-he7avqnpck] {
    border: 2px solid #000000;
    color: #000000;
    font-size: 1.2rem;
}

    .btn-x:hover[b-he7avqnpck] {
        background-color: #000000;
        color: white;
    }

.btn-threads[b-he7avqnpck] {
    border: 2px solid #000000;
    color: #000000;
    font-size: 1.2rem;
}

    .btn-threads:hover[b-he7avqnpck] {
        background-color: #000000;
        color: white;
    }

.btn-instagram[b-he7avqnpck] {
    border: 2px solid #e4405f;
    color: #e4405f;
    font-size: 1.2rem;
}

    .btn-instagram:hover[b-he7avqnpck] {
        background-color: #e4405f;
        color: white;
    }

.btn-facebook[b-he7avqnpck] {
    border: 2px solid #1877f2;
    color: #1877f2;
    font-size: 1.2rem;
}

    .btn-facebook:hover[b-he7avqnpck] {
        background-color: #1877f2;
        color: white;
    }

.btn-tiktok[b-he7avqnpck] {
    border: 2px solid #000000;
    color: #000000;
    font-size: 1.2rem;
}

    .btn-tiktok:hover[b-he7avqnpck] {
        background-color: #000000;
        color: white;
    }

.btn-youtube[b-he7avqnpck] {
    border: 2px solid #ff0000;
    color: #ff0000;
    font-size: 1.2rem;
}

    .btn-youtube:hover[b-he7avqnpck] {
        background-color: #ff0000;
        color: white;
    }

.btn-twitch[b-he7avqnpck] {
    border: 2px solid #9146ff;
    color: #9146ff;
    font-size: 1.2rem;
}

    .btn-twitch:hover[b-he7avqnpck] {
        background-color: #9146ff;
        color: white;
    }
/* _content/MartinKulev/Shared/Components/TechStackItem.razor.rz.scp.css */
.tech-card[b-lqmp5mugy3] {
    background-color: #fffac0;
    border-radius: 5%;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.form-range[b-lqmp5mugy3] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    margin-bottom: 10px;
    background: linear-gradient( to right, #0d6efd 0%, #0d6efd var(--val), #ddd var(--val), #ddd 100% );
}

    .form-range[b-lqmp5mugy3]::-webkit-slider-thumb {
        appearance: none;
        height: 16px;
        width: 16px;
        border-radius: 50%;
        background: #0d6efd;
        border: 2px solid white;
    }

    .form-range[b-lqmp5mugy3]::-moz-range-thumb {
        height: 16px;
        width: 16px;
        border-radius: 50%;
        background: #0d6efd;
        border: 2px solid white;
    }

    .form-range[b-lqmp5mugy3]::-webkit-slider-runnable-track {
        background: transparent;
    }

    .form-range[b-lqmp5mugy3]::-moz-range-track {
        background: transparent;
    }
/* _content/MartinKulev/Shared/Components/TimelineItem.razor.rz.scp.css */
.timeline-item[b-m0rpojfxtk] {
    position: relative;
    width: 50%;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

    .timeline-item.left[b-m0rpojfxtk] {
        left: 0;
        text-align: right;
        padding-right: 2rem;
    }

    .timeline-item.right[b-m0rpojfxtk] {
        left: 50%;
        text-align: left;
        padding-left: 2rem;
    }

@media (max-width: 768px) {
    .timeline-item[b-m0rpojfxtk] {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

        .timeline-item.left[b-m0rpojfxtk] {
            padding-right: 1.5rem;
        }

        .timeline-item.right[b-m0rpojfxtk] {
            padding-left: 1.5rem;
        }
}

    .timeline-item[b-m0rpojfxtk]::before {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        background-color: black;
        border-radius: 50%;
        z-index: 2;
    }

    .timeline-item.left[b-m0rpojfxtk]::before {
        right: -12px;
    }

    .timeline-item.right[b-m0rpojfxtk]::before {
        left: -12px;
    }

    .timeline-item .content[b-m0rpojfxtk] {
        padding: 0;
        margin: 0;
        background: none;
        border: none;
        box-shadow: none;
    }

    .timeline-item img[b-m0rpojfxtk] {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 0.5rem;
    }

.media[b-m0rpojfxtk] {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}
/* _content/MartinKulev/Shared/Components/WorkExperienceItem.razor.rz.scp.css */
.img-container[b-6j6mwi5qjy] {
    width: 100px;
    height: 100px;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.image[b-6j6mwi5qjy] {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 5px;
}

.container-width[b-6j6mwi5qjy] {
    width: 100%;
    max-width: 1000px;
}

.cursor-pointer[b-6j6mwi5qjy] {
    cursor: pointer;
}
/* _content/MartinKulev/Shared/Components/WorkPositionItem.razor.rz.scp.css */
.details-container[b-9q2sjvqubs] {
    display: flex;
    gap: 2rem;
    padding: 2rem;
}

.description-section[b-9q2sjvqubs] {
    flex: 1;
    min-width: 0;
}

.description-content[b-9q2sjvqubs] {
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #ddd;
    overflow-x: auto;
    max-height: 80vh;
    white-space: pre-wrap;
    line-height: 2;
}

.info-section[b-9q2sjvqubs] {
    flex: 0 0 auto;
    width: max-content;
    background-color: #fff;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.image[b-9q2sjvqubs] {
    max-width: 300px;
}

@media (max-width: 600px) {
    .details-container[b-9q2sjvqubs] {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .info-section[b-9q2sjvqubs],
    .description-section[b-9q2sjvqubs] {
        width: 100%;
        flex: unset;
    }
}
/* _content/MartinKulev/Shared/Footer.razor.rz.scp.css */
.gradient-footer[b-5c8w0n51cl] {
    background: linear-gradient(to right, #000000, #444444);
}

.social-icons[b-5c8w0n51cl] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
    font-size: 1.4rem;
}

    .social-icons a[b-5c8w0n51cl] {
        color: white;
        transition: color 0.3s ease;
    }

        .social-icons a:hover[b-5c8w0n51cl] {
            color: #ccc;
        }
/* _content/MartinKulev/Shared/MainLayout.razor.rz.scp.css */
.page[b-auok6a1h9m] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-auok6a1h9m] {
    flex: 1;
}

.sidebar[b-auok6a1h9m] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-auok6a1h9m] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-auok6a1h9m]  a, .top-row .btn-link[b-auok6a1h9m] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-auok6a1h9m] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-auok6a1h9m] {
        display: none;
    }

    .top-row.auth[b-auok6a1h9m] {
        justify-content: space-between;
    }

    .top-row a[b-auok6a1h9m], .top-row .btn-link[b-auok6a1h9m] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-auok6a1h9m] {
        flex-direction: row;
    }

    .sidebar[b-auok6a1h9m] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-auok6a1h9m] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-auok6a1h9m], article[b-auok6a1h9m] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

.chatbot-launch-button[b-auok6a1h9m] {
    width: 60px;
    height: 60px;
    background-color: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
    transition: background-color 0.3s ease;
}

    .chatbot-launch-button:hover[b-auok6a1h9m] {
        background-color: #0056b3;
    }
/* _content/MartinKulev/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-sy1m45j7mm] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-sy1m45j7mm] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-sy1m45j7mm] {
    font-size: 1.1rem;
}

.oi[b-sy1m45j7mm] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-sy1m45j7mm] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-sy1m45j7mm] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-sy1m45j7mm] {
        padding-bottom: 1rem;
    }

    .nav-item[b-sy1m45j7mm]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-sy1m45j7mm]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-sy1m45j7mm]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-sy1m45j7mm] {
        display: none;
    }

    .collapse[b-sy1m45j7mm] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-sy1m45j7mm] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}

.nav-item.dropdown:hover .dropdown-menu[b-sy1m45j7mm] {
    display: block;
    margin-top: 0;
}

.dropdown-item:hover[b-sy1m45j7mm] {
    background-color: whitesmoke !important;
}

.gradient-navbar[b-sy1m45j7mm] {
    background: linear-gradient(to left, #000000, #333333);
}

.dropdown-item i[b-sy1m45j7mm] {
    margin-right: 8px;
}
