﻿/*.user-content blockquote {
    margin-inline-start: 5px;
    margin-top: 0;
    margin-bottom: 5px;
}

details {
    display: block !important;
    position: relative;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    transition: background 0.2s ease;
}

    details:hover {
        background-color: #fcfcfc;
        box-shadow: 0px 0px 4px 2px #0000001f;
    }

    details::details-content {
        content-visibility: visible !important;
        display: block !important;
    }

    details summary {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
        z-index: 2;
        list-style: none; 
        margin-left: 15px;
        margin-top: 5px;
    }

        details summary:hover {
            padding-left: 0px;
        }

        details summary::-webkit-details-marker {
            display: none;
        }

    details::before {
        content: "+";
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 20px;
        font-weight: bold;
        color: #333;
        transition: transform 0.3s ease;
        z-index: 1; 
    }

    details[open]::before {
        content: "−"; 
        transform: rotate(180deg);
    }

    details:not([open]) .desc-container {
        display: -webkit-box !important;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3; 
        overflow: hidden;
        text-overflow: ellipsis;
        padding-right: 30px;
        padding-top: 5px;
    }

    details[open] summary {
        height: 40px; 
    }
*/

details{
    margin-bottom:30px;
}
details summary {
    list-style-position: inside !important;
    margin-left: 0 !important;
    border-radius: 8px;
    padding: 5px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    box-shadow: 0px 0px 4px 2px #DDDDDDEE;
}
    details summary:hover {
        
        box-shadow: 0px 0px 4px 2px #00000099;
        padding-left:5px;
    }
    summary p {
        display: block !important;
    }

    details .desc-container{
        margin-left:10px;
    }