

:root {
    --h1:  clamp(1.8rem, 3vw + 1rem, 3rem);  /* ~29px to 48px */
    --h2:  clamp(1.5rem, 2.5vw + 0.5rem, 2.25rem);  /* ~24px to 36px */
    --h3:  clamp(1.25rem, 2vw + 0.25rem, 1.75rem);  /* ~20px to 28px */
    --h4:  clamp(1.125rem, 1.5vw + 0.25rem, 1.5rem);  /* ~18px to 24px */
    --h5:  clamp(1rem, 1.2vw + 0.2rem, 1.25rem);  /* ~16px to 20px */
    --h6:  clamp(0.875rem, 1vw + 0.2rem, 1rem);  /* ~14px to 16px */
    --p:   clamp(1rem, 1.2vw + 0.5rem, 1.25rem);  /* ~16px to 20px */

}




.PortfolioMain {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px; /* space between boxes, adjust as needed */
    margin-bottom: 5px;
}


.Portfolio_Holder{
    border: 5px solid white;
    padding: 5px;
    background-color: black;
    margin-top: 10px;
}



.Portfolio_ScrollWrapper {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding-bottom: 15px;
    scrollbar-width: auto;
    scrollbar-color: aqua #111;
    scroll-behavior: smooth;
}

/* Optional: Style scrollbar for Webkit (Chrome, Safari, Edge) */

.Portfolio_ScrollWrapper::-webkit-scrollbar {
    height: 50px;
}

.Portfolio_ScrollWrapper::-webkit-scrollbar-track {
    background: #111; /* darker background for the track */
    border-radius: 6px;
}

.Portfolio_ScrollWrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(to right, aqua, cyan);
    border-radius: 6px;
    border: 2px solid #111; /* space around thumb */
}

.Portfolio_ScrollWrapper::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to right, #00ffff, #00b7eb);
}


.Portfolio_Taps{
    font-family: 'Orbitron', sans-serif;
    margin-left: 10px;
}

details{
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.25rem, 2vw + 0.25rem, 1.75rem);
    color: white;
    margin: 10px;
}

details[open] > summary {
    font-weight: bold; !important;
    border: none; !important;
}


.portfolio_box{
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: white;
    flex: 0 0 300px;
    height: 90%; /* fixed height */
    box-sizing: border-box;
    border: 3px solid aqua; /* optional, for visibility */
    padding: 10px;
    background: black;
    flex-shrink: 0;

    word-wrap: break-word;     /* Wrap long words */
    overflow-wrap: break-word; /* More consistent across browsers */
    white-space: normal;       /* Allow wrapping inside the box */
}

.portfolio_box{
    border: 3px solid gray; /* optional, for visibility */
}

.portfolio_picture{
    max-width: 100%;
}


.portfolio_Important{
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
}

.portfolio_description{
    font-family: Verdana, sans-serif;
    height: 100px; /* fixed height */

}

.portfolio_tags{
    font-family: Verdana, sans-serif;

}

.portfolio_arttrade{
    text-decoration-line: line-through;
}

.portfolio_search{
    margin-right: 10px;
    margin-left: 10px;
    border: 5px solid white;
    padding: 5px 3px;
    background-color: black;
    margin-top: 10px;
}

.Portfolio_Search_Submit{
    font-size: var(--h5);
}