/* Version 1.0.21 */
@font-face {
    font-family: 'Vazirmatn';
    src: url('fonts/Vazirmatn.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Samim';
    src: url('fonts/Samim.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
    * {
        font-family: 'Vazirmatn', 'Samim', sans-serif;
        margin: 0; padding: 0; box-sizing: border-box; 
     }
    :root {
    --warrning: pink;
    --primary-color: #e0e5ec;
    --shadow-light: #ffffff;
    --shadow-dark: #a3b1c6;
    --accent-color: #bc9bf4;
    --special-color: #cc6aa6cc;
    --special-textcolor: #c91483cc;
    --text-color: #4a5568;
    --text-light: #718096;
    --border-radius: 20px;
    --transition: all 1s ease;
    --hue: 220deg;
    --width: 15rem;
    --accent-hue: 22deg;
    --duration: 0.2s;
    --easing: cubic-bezier(1, 0, 1, 1);
    --swal2-confirm-button-bg: #4CAF50;
    --swal2-cancel-button-bg: #f44336;
    }
    body.dark-theme {
        font-family: 'Vazirmatn', 'Samim', sans-serif;
        --warrning: red;
        --primary-color: #2d3748;
        --shadow-light: #4a5568;
        --shadow-dark: #1a202c;
        --accent-color: #bc9bf4;
        --special-color: #ccaa6aff;
        --special-textcolor: #c91483cc;
        --text-color: #e2e8f0;
        --text-light: #a0aec0;
    }
    body {
        font-family: 'Vazirmatn', 'Samim', sans-serif;
        background-color: var(--primary-color);
        color: var(--text-color);
        line-height: 1.6;
        padding: 20px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    a,.a{
        color:var(--accent-color);
        text-decoration:none;
    }
    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* استایل‌های عمومی Neumorphism */
    .neumorphic {
        background: var(--primary-color);
        border-radius: var(--border-radius);
        box-shadow: 8px 8px 16px var(--shadow-dark), 
                    -8px -8px 16px var(--shadow-light);
    }

    .neumorphic-inset {
        background: var(--primary-color);
        border-radius: var(--border-radius);
        box-shadow: inset 8px 8px 16px var(--shadow-dark), 
                    inset -8px -8px 16px var(--shadow-light);
    }

    .neumorphic-pressed {
        background: var(--primary-color);
        border-radius: var(--border-radius);
        box-shadow: inset 8px 8px 16px var(--shadow-dark), 
                    inset -8px -8px 16px var(--shadow-light);
    }

    /* هدر */
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        margin-bottom: 30px;
        width: 100%;
    }

    .logo {
        font-size: 24px;
        font-weight: 700;
        color: var(--accent-color);
    }

    nav ul {
        display: flex;
        list-style: none;
        gap: 10px;
    }

    nav a {
        text-decoration: none;
        color: var(--text-color);
        font-weight: 500;
        padding: 10px 15px;
        border-radius: var(--border-radius);
        transition: var(--transition);
    }

    nav a:hover {
        background: var(--primary-color);
        box-shadow: inset 2px 2px 5px var(--shadow-dark), 
                    inset -2px -2px 5px var(--shadow-light);
    }

    /* محتوای اصلی */
    .main-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .card {
        padding: 25px;
        margin-bottom: 25px;
        transition: var(--transition);
    }

    .card:hover {
        transform: translateY(-5px);
    }

    .card h2 {
        margin-bottom: 15px;
        color: var(--accent-color);
    }

    /* دکمه‌ها */
    .btn {
        padding: 12px 25px;
        border: none;
        border-radius: var(--border-radius);
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        display: inline-block;
        text-align: center;
    }

    .btn-primary {
        background: var(--primary-color);
        color: var(--accent-color);
        box-shadow: 8px 8px 16px var(--shadow-dark), 
                    -8px -8px 16px var(--shadow-light);
    }

    .btn-primary:hover {
        box-shadow: inset 2px 2px 5px var(--shadow-dark), 
                    inset -2px -2px 5px var(--shadow-light);
    }

    .btn-secondary {
        background: var(--accent-color);
        color: white;
        box-shadow: 8px 8px 16px var(--shadow-dark), 
                    -8px -8px 16px var(--shadow-light);
    }

    .btn-secondary:hover {
        color:black;
        box-shadow: inset 2px 2px 5px var(--shadow-dark), 
                    inset -2px -2px 5px var(--shadow-light);
    }

    /* فرم‌ها */
    .form-group {            
        margin-bottom: 20px;
        text-align:right;
        direction:rtl;
    }
    .form-label {
        text-align:right;
        direction:rtl;
        padding:0px 10px 0px 0px;
    }
    .form-control {
        width: 100%;
        padding: 15px;
        border: none;
        border-radius: var(--border-radius);
        background: var(--primary-color);
        box-shadow: inset 8px 8px 16px var(--shadow-dark), 
                    inset -8px -8px 16px var(--shadow-light);
        transition: var(--transition);
        font-size: 16px;
    }

    .form-control:focus {
        outline: none;
        box-shadow: inset 4px 4px 8px var(--shadow-dark), 
                    inset -4px -4px 8px var(--shadow-light);
    }

    /* سوئیچ */
    .switch {
        position: relative;
        display: inline-block;
        width: 60px;
        height: 34px;
    }
    .switch.disabled {
        pointer-events: none;
        filter: grayscale(100%);
    }
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--primary-color);
        box-shadow: inset 8px 8px 16px var(--shadow-dark), 
                    inset -8px -8px 16px var(--shadow-light);
        transition: var(--transition);
        border-radius: 34px;
    }

    .slider:before {
        position: absolute;
        content: '';
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;        
        background-color: var(--primary-color);
        box-shadow: 4px 4px 8px var(--shadow-dark), 
                    -4px -4px 8px var(--shadow-light);
        transition: var(--transition);
        border-radius: 50%;
    }
    input{
        color: var(--text-color);
    }
    input:checked + .slider {
        background-color: var(--accent-color);
    }

    input:checked + .slider:before {
        transform: translateX(26px);
    }
    li{
    margin-right:20px;
    }
    /* پیشرفت */
    .progress {
        width: 100%;
        height: 20px;
        background-color: var(--primary-color);
        border-radius: var(--border-radius);
        box-shadow: inset 8px 8px 16px var(--shadow-dark), 
                    inset -8px -8px 16px var(--shadow-light);
        overflow: hidden;
        margin: 15px 0;
    }

    .progress-bar {
        height: 100%;
        background-color: var(--accent-color);
        border-radius: var(--border-radius);
        box-shadow: 4px 4px 8px rgba(106, 137, 204, 0.3);
        transition: width 0.5s ease;
    }

    /* اسلایدر */
    .slider-container {
        width: 100%;
        margin: 20px 0;
    }

    .range-slider {
        color: var(--text-color);
        -webkit-appearance: none;
        width: 100%;
        height: 15px;
        border-radius: var(--border-radius);
        background: var(--primary-color);
        box-shadow: inset 8px 8px 16px var(--shadow-dark), 
                    inset -8px -8px 16px var(--shadow-light);
        outline: none;
    }

    .range-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: var(--primary-color);
        box-shadow: 4px 4px 8px var(--shadow-dark), 
                    -4px -4px 8px var(--shadow-light);
        cursor: pointer;
    }

    /* آیکون‌ها */
    .icon-container {
        display: flex;
        justify-content: space-around;
        margin: 20px 0;
    }

    .icon {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 24px;
        color: var(--accent-color);
        transition: var(--transition);
        cursor: pointer;
    }

    .icon:hover {
        box-shadow: inset 4px 4px 8px var(--shadow-dark), 
                    inset -4px -4px 8px var(--shadow-light);
    }
    /* === رادیو === */
    .radio {
    width: 20px;
    height: 20px;
    appearance: none;
    border-radius: 50%;
    cursor: pointer;
    background: #e0e0e0;
    box-shadow: inset 6px 6px 12px #bebebe,
                inset -6px -6px 12px var(--shadow-light);
    }
    .radio:checked {
    background: var(--accent-color);
    box-shadow: inset 6px 6px 12px var(--accent-color),
                inset -6px -6px 12px var(--accent-color);
    }       
    /* فوتر */
    footer {
        text-align: center;
        padding: 20px;
        margin-top: 30px;
        width: 100%;
        color: var(--text-light);
        font-size: 14px;
    }
    /* ریسپانسیو */
    @media (max-width: 768px) {
        .main-content {
            grid-template-columns: 1fr;
        }
        
        header {
            flex-direction: column;
            gap: 20px;
        }
        
        nav ul {
            flex-wrap: wrap;
            justify-content: center;
        }
    }
    .no-spinners {
    -moz-appearance: textfield;
    }
    .no-spinners::-webkit-outer-spin-button,
    .no-spinners::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    
    .marcelobutton, .marcelobutton::after {
        --white: var(--shadow-light);
        --purple-100: #fff1fd;
        --purple-200: #d190ff;
        --purple-300: #c389f2;
        --purple-400: #8e26e2;
        --purple-500: #5e2b83;
        --radius: 18px;

        border-radius: var(--radius);
        outline: none;
        cursor: pointer;
        font-size: 23px;
        font-family: Arial;
        background: transparent;
        letter-spacing: -1px;
        border: 0;
        position: relative;
        width: 220px;
        height: 80px;
        transform: rotate(353deg) skewX(4deg);
        }

        .bg {
        position: absolute;
        inset: 0;
        border-radius: inherit;
        filter: blur(1px);
        }
        .bg::before,
        .bg::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: calc(var(--radius) * 1.1);
        background: var(--purple-500);
        }
        .bg::before {
        filter: blur(5px);
        transition: all 0.3s ease;
        box-shadow:
            -7px 6px 0 0 rgb(115 75 155 / 40%),
            -14px 12px 0 0 rgb(115 75 155 / 30%),
            -21px 18px 4px 0 rgb(115 75 155 / 25%),
            -28px 24px 8px 0 rgb(115 75 155 / 15%),
            -35px 30px 12px 0 rgb(115 75 155 / 12%),
            -42px 36px 16px 0 rgb(115 75 155 / 8%),
            -56px 42px 20px 0 rgb(115 75 155 / 5%);
        }

        .wrap {
        border-radius: inherit;
        overflow: hidden;
        height: 100%;
        transform: translate(6px, -6px);
        padding: 3px;
        background: linear-gradient(
            to bottom,
            var(--purple-100) 0%,
            var(--purple-400) 100%
        );
        position: relative;
        transition: all 0.3s ease;
        }

        .outline {
        position: absolute;
        overflow: hidden;
        inset: 0;
        opacity: 0;
        outline: none;
        border-radius: inherit;
        transition: all 0.4s ease;
        }
        .outline::before {
        content: '';
        position: absolute;
        inset: 2px;
        width: 120px;
        height: 300px;
        margin: auto;
        background: linear-gradient(
            to right,
            transparent 0%,
            white 50%,
            transparent 100%
        );
        animation: spin 3s linear infinite;
        animation-play-state: paused;
        }

        .content {
        pointer-events: none;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        position: relative;
        height: 100%;
        gap: 16px;
        border-radius: calc(var(--radius) * 0.85);
        font-weight: 600;
        transition: all 0.3s ease;
        background: linear-gradient(
            to bottom,
            var(--purple-300) 0%,
            var(--purple-400) 100%
        );
        box-shadow:
            inset -2px 12px 11px -5px var(--purple-200),
            inset 1px -3px 11px 0px rgb(0 0 0 / 35%);
        }
        .content::before {
        content: '';
        inset: 0;
        position: absolute;
        z-index: 10;
        width: 80%;
        top: 45%;
        bottom: 35%;
        opacity: 0.7;
        margin: auto;
        background: linear-gradient(to bottom, transparent, var(--purple-400));
        filter: brightness(1.3) blur(5px);
        }

        .char {
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        }
        .char span {
        display: block;
        color: transparent;
        position: relative;
        }
        .char span:nth-child(5) {
        margin-left: 5px;
        }
        .char.state-1 span:nth-child(5) {
        margin-right: -3px;
        }
        .char.state-1 span {
        animation: charAppear 1.2s ease backwards calc(var(--i) * 0.03s);
        }
        .char.state-1 span::before,
        .char span::after {
        content: attr(data-label);
        position: absolute;
        color: var(--white);
        text-shadow: -1px 1px 2px var(--purple-500);
        left: 0;
        }
        .char span::before {
        opacity: 0;
        transform: translateY(-100%);
        }
        .char.state-2 {
        position: absolute;
        left: 80px;
        }
        .char.state-2 span::after {
        opacity: 1;
        }

        .icon {
        animation: resetArrow 1s cubic-bezier(0.7, -0.5, 0.3, 1.2) forwards;
        z-index: 10;
        }
        .icon div,
        .icon div::before,
        .icon div::after {
        height: 3px;
        border-radius: 1px;
        background-color: var(--white);
        }
        .icon div::before,
        .icon div::after {
        content: '';
        position: absolute;
        right: 0;
        transform-origin: center right;
        width: 14px;
        border-radius: 15px;
        transition: all 0.3s ease;
        }
        .icon div {
        position: relative;
        width: 24px;
        box-shadow: -2px 2px 5px var(--purple-400);
        transform: scale(0.9);
        background: linear-gradient(to bottom, var(--white), var(--purple-100));
        animation: swingArrow 1s ease-in-out infinite;
        animation-play-state: paused;
        }
        .icon div::before {
        transform: rotate(44deg);
        top: 1px;
        box-shadow: 1px -2px 3px -1px var(--purple-400);
        animation: rotateArrowLine 1s linear infinite;
        animation-play-state: paused;
        }
        .icon div::after {
        bottom: 1px;
        transform: rotate(316deg);
        box-shadow: -2px 2px 3px 0 var(--purple-400);
        background: linear-gradient(200deg, var(--white), var(--purple-100));
        animation: rotateArrowLine2 1s linear infinite;
        animation-play-state: paused;
        }

        .path {
        position: absolute;
        z-index: 12;
        bottom: 0;
        left: 0;
        right: 0;
        stroke-dasharray: 150 480;
        stroke-dashoffset: 150;
        pointer-events: none;
        }

        .splash {
        position: absolute;
        top: 0;
        left: 0;
        pointer-events: none;
        stroke-dasharray: 60 60;
        stroke-dashoffset: 60;
        transform: translate(-17%, -31%);
        stroke: var(--purple-300);
        }

        /** STATES */

        .marcelobutton:hover .words {
        opacity: 1;
        }
        .marcelobutton:hover .words span {
        animation-play-state: running;
        }

        .marcelobutton:hover .char.state-1 span::before {
        animation: charAppear 0.7s ease calc(var(--i) * 0.03s);
        }

        .marcelobutton:hover .char.state-1 span::after {
        opacity: 1;
        animation: charDisappear 0.7s ease calc(var(--i) * 0.03s);
        }

        .marcelobutton:hover .wrap {
        transform: translate(8px, -8px);
        }

        .marcelobutton:hover .outline {
        opacity: 1;
        }

        .marcelobutton:hover .outline::before,
        .marcelobutton:hover .icon div::before,
        .marcelobutton:hover .icon div::after,
        .marcelobutton:hover .icon div {
        animation-play-state: running;
        }

        .marcelobutton:active .bg::before {
        filter: blur(5px);
        opacity: 0.7;
        box-shadow:
            -7px 6px 0 0 rgb(115 75 155 / 40%),
            -14px 12px 0 0 rgb(115 75 155 / 25%),
            -21px 18px 4px 0 rgb(115 75 155 / 15%);
        }
        .marcelobutton:active .content {
        box-shadow:
            inset -1px 12px 8px -5px rgba(71, 0, 137, 0.4),
            inset 0px -3px 8px 0px var(--purple-200);
        }

        .marcelobutton:active .words,
        .marcelobutton:active .outline {
        opacity: 0;
        }

        .marcelobutton:active .wrap {
        transform: translate(3px, -3px);
        }

        .marcelobutton:active .splash {
        animation: splash 0.8s cubic-bezier(0.3, 0, 0, 1) forwards 0.05s;
        }

        .marcelobutton:focus .path {
        animation: path 1.6s ease forwards 0.2s;
        }

        .marcelobutton:focus .icon {
        animation: arrow 1s cubic-bezier(0.7, -0.5, 0.3, 1.5) forwards;
        }

        .char.state-2 span::after,
        .marcelobutton:focus .char.state-1 span {
        animation: charDisappear 0.5s ease forwards calc(var(--i) * 0.03s);
        }

        .marcelobutton:focus .char.state-2 span::after {
        animation: charAppear 1s ease backwards calc(var(--i) * 0.03s);
        }

        @keyframes spin {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
        }

        @keyframes charAppear {
        0% {
            transform: translateY(50%);
            opacity: 0;
            filter: blur(20px);
        }
        20% {
            transform: translateY(70%);
            opacity: 1;
        }
        50% {
            transform: translateY(-15%);
            opacity: 1;
            filter: blur(0);
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
        }

        @keyframes charDisappear {
        0% {
            transform: translateY(0);
            opacity: 1;
        }
        100% {
            transform: translateY(-70%);
            opacity: 0;
            filter: blur(3px);
        }
        }

        @keyframes arrow {
        0% {
            opacity: 1;
        }
        50% {
            transform: translateX(60px);
            opacity: 0;
        }
        51% {
            transform: translateX(-200px);
            opacity: 0;
        }
        100% {
            transform: translateX(-128px);
            opacity: 1;
        }
        }

        @keyframes swingArrow {
        50% {
            transform: translateX(5px) scale(.9);
        }
        }

        @keyframes rotateArrowLine {
        50% {
            transform: rotate(30deg);
        }
        80% {
            transform: rotate(55deg);
        }
        }

        @keyframes rotateArrowLine2 {
        50% {
            transform: rotate(330deg);
        }
        80% {
            transform: rotate(300deg);
        }
        }

        @keyframes resetArrow {
        0% {
            opacity:0;
            transform: translateX(140px);
        }
        100% {
            opacity:1;
            transform: translateX(30px);/*->*/
        }
        }

        @keyframes path {
        from {
            stroke: white;
        }
        to {
            stroke-dashoffset: -480;
            stroke: #f9c6fe;
        }
        }

        @keyframes splash {
        to {
            stroke-dasharray: 2 60;
            stroke-dashoffset: -60;
        }
        }.fcolombatibutton {
    all: unset;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    position: relative;
    border-radius: 100em;
    background-color: rgba(0, 0, 0, 0.75);
    box-shadow:
        -0.15em -0.15em 0.15em -0.075em rgba(5, 5, 5, 0.25),
        0.0375em 0.0375em 0.0675em 0 rgba(5, 5, 5, 0.1);
    }

    .fcolombatibutton::after {
    content: '';
    position: absolute;
    z-index: 0;
    width: calc(100% + 0.3em);
    height: calc(100% + 0.3em);
    top: -0.15em;
    left: -0.15em;
    border-radius: inherit;
    background: linear-gradient(
        -135deg,
        rgba(5, 5, 5, 0.5),
        transparent 20%,
        transparent 100%
    );
    filter: blur(0.0125em);
    opacity: 0.25;
    mix-blend-mode: multiply;
    }

    .fcolombatibutton .fcolombatibutton-outer {
    position: relative;
    z-index: 1;
    border-radius: inherit;
    transition: box-shadow 300ms ease;
    will-change: box-shadow;
    box-shadow:
        0 0.05em 0.05em -0.01em rgba(5, 5, 5, 1),
        0 0.01em 0.01em -0.01em rgba(5, 5, 5, 0.5),
        0.15em 0.3em 0.1em -0.01em rgba(5, 5, 5, 0.25);
    }

    .fcolombatibutton:hover .fcolombatibutton-outer {
    box-shadow:
        0 0 0 0 rgba(5, 5, 5, 1),
        0 0 0 0 rgba(5, 5, 5, 0.5),
        0 0 0 0 rgba(5, 5, 5, 0.25);
    }

    .fcolombatibutton-inner {
    --inset: 0.035em;
    position: relative;
    z-index: 1;
    border-radius: inherit;
    padding: 1em 1.5em;
    background-image: linear-gradient(
        135deg,
        rgba(230, 230, 230, 1),
        rgba(180, 180, 180, 1)
    );
    transition:
        box-shadow 300ms ease,
        clip-path 250ms ease,
        background-image 250ms ease,
        transform 250ms ease;
    will-change: box-shadow, clip-path, background-image, transform;
    overflow: clip;
    clip-path: inset(0 0 0 0 round 100em);
    box-shadow:
            /* 1 */
        0 0 0 0 inset rgba(5, 5, 5, 0.1),
        /* 2 */ -0.05em -0.05em 0.05em 0 inset rgba(5, 5, 5, 0.25),
        /* 3 */ 0 0 0 0 inset rgba(5, 5, 5, 0.1),
        /* 4 */ 0 0 0.05em 0.2em inset rgba(255, 255, 255, 0.25),
        /* 5 */ 0.025em 0.05em 0.1em 0 inset rgba(255, 255, 255, 1),
        /* 6 */ 0.12em 0.12em 0.12em inset rgba(255, 255, 255, 0.25),
        /* 7 */ -0.075em -0.25em 0.25em 0.1em inset rgba(5, 5, 5, 0.25);
    }

    .fcolombatibutton:hover .fcolombatibutton-inner {
    clip-path: inset(
        clamp(1px, 0.0625em, 2px) clamp(1px, 0.0625em, 2px)
        clamp(1px, 0.0625em, 2px) clamp(1px, 0.0625em, 2px) round 100em
    );
    box-shadow:
            /* 1 */
        0.1em 0.15em 0.05em 0 inset rgba(5, 5, 5, 0.75),
        /* 2 */ -0.025em -0.03em 0.05em 0.025em inset rgba(5, 5, 5, 0.5),
        /* 3 */ 0.25em 0.25em 0.2em 0 inset rgba(5, 5, 5, 0.5),
        /* 4 */ 0 0 0.05em 0.5em inset rgba(255, 255, 255, 0.15),
        /* 5 */ 0 0 0 0 inset rgba(255, 255, 255, 1),
        /* 6 */ 0.12em 0.12em 0.12em inset rgba(255, 255, 255, 0.25),
        /* 7 */ -0.075em -0.12em 0.2em 0.1em inset rgba(5, 5, 5, 0.25);
    }

    .fcolombatibutton .fcolombatibutton-inner span {
    position: relative;
    z-index: 4;
    font-family: 'Vazirmatn', sans-serif;
    letter-spacing: -0.05em;
    font-weight: 500;
    color: rgba(0, 0, 0, 0);
    background-image: linear-gradient(
        135deg,
        rgba(25, 25, 25, 1),
        rgba(75, 75, 75, 1)
    );
    -webkit-background-clip: text;
    background-clip: text;
    transition: transform 250ms ease;
    display: block;
    will-change: transform;
    text-shadow: rgba(0, 0, 0, 0.1) 0 0 0.1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    }

    .fcolombatibutton:hover .fcolombatibutton-inner span {
        color: #f50f0fc5;
    transform: scale(0.975);
    }

    .fcolombatibutton:active .fcolombatibutton-inner {
    transform: scale(0.975);
    }
    
        .togglesw {    
        display: none;
        }

        .switch {
        transform: scale(0.3);
        transform-origin: 0 0;
        --shadow-offset: calc(var(--width) / 20);
        position: relative;
        cursor: pointer;
        display: flex;
        align-items: center;
        width: var(--width);
        height: calc(var(--width) / 2.5);
        border-radius: var(--width);            
        box-shadow: inset 10px 10px 10px hsl(var(--hue) 20% 80%),
            inset -10px -10px 10px hsl(var(--hue) 20% 93%);
        }

        .indicator {
        content: '';
        position: absolute;
        width: 40%;
        height: 60%;
        transition: all var(--duration) var(--easing);
        box-shadow: inset 0 0 2px hsl(var(--hue) 20% 15% / 60%),
            inset 0 0 3px 2px hsl(var(--hue) 20% 15% / 60%),
            inset 0 0 5px 2px hsl(var(--hue) 20% 45% / 60%);
        }

        .indicator.left {
        --hue: var(--accent-hue);
        overflow: hidden;
        left: 10%;
        border-radius: 100px 0 0 100px;
        background: linear-gradient(180deg, #8ea7e9 10%, var(--accent-color) 40%, #5474b6 70%, var(--accent-color) 90%);
        }

        .indicator.left::after {
        content: '';
        position: absolute;
        opacity: 0.6;
        width: 100%;
        height: 100%;
        }

        .indicator.right {
        right: 10%;
        border-radius: 0 100px 100px 0;
        background-image: linear-gradient(180deg, hsl(var(--hue) 20% 95%), hsl(var(--hue) 20% 65%) 60%, hsl(var(--hue) 20% 70%) 70%, hsl(var(--hue) 20% 65%));
        }

        .button {
        position: absolute;
        z-index: 1;
        width: 55%;
        height: 80%;
        left: 5%;
        border-radius: 100px;
        background-image: linear-gradient(160deg, hsl(var(--hue) 20% 95%) 40%, hsl(var(--hue) 20% 65%) 70%);
        transition: all var(--duration) var(--easing);
        box-shadow: 2px 2px 3px hsl(var(--hue) 18% 50% / 80%),
            2px 2px 6px hsl(var(--hue) 18% 50% / 40%),
            10px 20px 10px hsl(var(--hue) 18% 50% / 40%),
            20px 30px 30px hsl(var(--hue) 18% 50% / 60%);
        }

        .button::before, 
        .button::after {
        content: '';
        position: absolute;
        top: 10%;
        width: 41%;
        height: 80%;
        border-radius: 100%;
        }

        .button::before {
        left: 5%;
        box-shadow: inset 1px 1px 2px hsl(var(--hue) 20% 85%);
        background-image: linear-gradient(-50deg, hsl(var(--hue) 20% 95%) 20%, hsl(var(--hue) 20% 85%) 80%);
        }

        .button::after {
        right: 5%;
        box-shadow: inset 1px 1px 3px hsl(var(--hue) 20% 70%);
        background-image: linear-gradient(-50deg, hsl(var(--hue) 20% 95%) 20%, hsl(var(--hue) 20% 75%) 80%);
        }

        .togglesw:checked ~ .button {
        left: 40%;
        }

        .togglesw:not(:checked) ~ .indicator.left,
        .togglesw:checked ~ .indicator.right {
        box-shadow: inset 0 0 5px hsl(var(--hue) 20% 15% / 100%),
            inset 20px 20px 10px hsl(var(--hue) 20% 15% / 100%),
            inset 20px 20px 15px hsl(var(--hue) 20% 45% / 100%);
        }
    .neumorphic-textarea {
        width: 100%;
        min-height: 120px;
        padding: 15px 20px;
        border: none;
        border-radius: var(--border-radius);
        background: var(--primary-color);
        color: var(--text-color);
        font-size: 16px;
        resize: vertical;
        direction: rtl; /* برای زبان فارسی */
        box-shadow:
            inset 8px 8px 16px var(--shadow-dark),
            inset -8px -8px 16px var(--shadow-light);
        transition: var(--transition);
    }

    .neumorphic-textarea:focus {
        outline: none;
        box-shadow:
            inset 4px 4px 8px var(--shadow-dark),
            inset -4px -4px 8px var(--shadow-light);
    }

    /* برای حالت تیره */
    body.dark-theme .neumorphic-textarea {
        background: var(--primary-color);
        color: var(--text-color);
    }
    .containercheckmark input {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .containercheckmark {        
        display: block;
        position: relative;
        cursor: pointer;
        font-size: 20px;
        user-select: none;
        border: 1px solid lightgray;
        border-radius: 2px;
        overflow: hidden;
        height: 1.8em;
    }

    .checkmark {    
        position: relative;
        top: 0;
        left: 0;
        height: 1.3em;
        width: 1.3em;
        background-color: var(--accent-color);
        border-bottom: 1.5px solid var(--accent-color); 
        box-shadow: 0 0 1px #cef1e4, 
                    inset 0 -2.5px 3px var(--accent-color),
                    inset 0 3px 3px rgba(0, 0, 0, 0.34); 
        border-radius: 3px;
        transition: transform 0.3s ease-in-out; 
    }

    .containercheckmark input:checked ~ .checkmark {
        transform: translateX(0); 
        animation: wipeLeft 0.6s ease-in-out forwards; 
    }

    .containercheckmark input:not(:checked) ~ .checkmark {
        transform: translateX(40px); 
        animation: wipeRight 0.6s ease-in-out forwards; 
    }

    @keyframes wipeLeft {
        0% { transform: translateX(40px); }
        100% { transform: translateX(0); }
    }

    @keyframes wipeRight {
        0% { transform: translateX(0); }
        100% { transform: translateX(40px); }
    }

    .checkmark:after {
        content: '';
        position: absolute;
        display: none;
    }

    .containercheckmark input:checked ~ .checkmark:after {
        display: block;
    }

    .containercheckmark .checkmark:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -60%) rotate(45deg);
        width: 5px;
        height: 10px;
        border: solid white;
        border-width: 0 2px 2px 0;
        box-shadow: 0 4px 2px rgba(0, 0, 0, 0.34); 
    }
    
    .select-wrapper {
        position: relative;
        display: inline-block;
        width: 100%;
    }

    .neumorphic-select {
        width: 100%;
        margin-top:4px;
        padding: 14px 45px 19px 16px;
        border: none;
        border-radius: var(--border-radius);
        background: var(--primary-color);
        color: var(--text-color);
        font-size: 16px;
        appearance: none;
        cursor: pointer;
        direction: rtl; 
        text-align: right;
        transition: var(--transition);
        box-shadow:
            inset 4px 4px 8px var(--shadow-dark),
            inset -4px -4px 8px var(--shadow-light);
    }

    .neumorphic-select:focus {
        outline: none;
        box-shadow:
            inset 2px 2px 4px var(--shadow-dark),
            inset -2px -2px 4px var(--shadow-light);
    }

            .select-wrapper::after {
                content: '▼';
                position: absolute;
                right: 5px;
                top: 50%;
                zoom:2;
                transform: translateY(-50%);
                font-size: .5rem;
                color: var(--accent-color);
                pointer-events: none;
            }

            .neumorphic-select option {
                background: var(--primary-color);
                color: var(--text-color);
                border: none;
            }.custom-radio-group {    
    display: flex;
    flex-direction: column;
    gap: 12px;
    width:100%;
    border-radius: 12px;
    background: rgba(243, 238, 238, 0.2);
    padding: 16px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }
    .custom-radio-container {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 20px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
    font-size: 16px;
    color: #333333;
    user-select: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
    .custom-radio-container:hover {
    background-color: rgba(224, 218, 218, 0.3);
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }
    .custom-radio-container input[type='radio'] {
    opacity: 0;
    position: absolute;
    }
    .custom-radio-checkmark {
    position: relative;
    height: 24px;
    width: 24px;
    border: 2px solid var(--shadow-light);
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    transition:
        background-color 0.4s ease,
        transform 0.4s ease;
    margin-right: 12px;
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    }
    .custom-radio-textoption {
    margin-right:10px;
    color:var(--text-color);
    font-weight: bolder;
    }
    .custom-radio-textquestion {
    margin-right:10px;
    font-size:110%;
    color:var(--text-color);
    font-weight: bolder;
    }
    .custom-radio-container input[type='radio']:checked + .custom-radio-checkmark {
    background-color: var(--shadow-light);
    border-color: #007bff;
    box-shadow: 0 0 0 8px rgba(0, 123, 255, 0.2);
    transform: scale(1.2);
    animation: pulse 0.6s forwards;
    }
    .custom-radio-checkmark::after {
    content: '';
    position: absolute;
    display: none;
    }
    .custom-radio-container
    input[type='radio']:checked
    + .custom-radio-checkmark::after {
    display: block;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #007bff;
    transform: translate(-50%, -50%);
    }
    @keyframes pulse {
    0% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1.4);
    }
    100% {
        transform: scale(1.2);
    }
    }
    .radiotypebuttons {
        display: flex;
        align-items: center;
        background-color: #f0f4f8;
        padding: 4px;
        border-radius: 12px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        width: fit-content;
        margin: 0 auto;
    }

    .radiotypebuttons input {
        display: none;
    }

    .radiotypebuttons .labeltypebuttons {
        width: 120px;
        height: 60px;
        background: linear-gradient(to bottom, var(--shadow-light), #f5f7fa);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 8px;
        transition: all 0.2s ease;
        border: 1px solid #e1e8ed;
        position: relative;
        cursor: pointer;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
    }

    .labeltypebuttons:has(input[type='radio']:checked) {
        box-shadow: 0px 0px 0px 2px var(--accent-color), 0px 4px 8px rgba(52, 152, 219, 0.2);
        background: linear-gradient(to bottom, var(--shadow-light), #e1f0fa);
        border-color: var(--accent-color);
    }

    .labeltypebuttons:first-child {
    border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        margin:2px;

    }

    .labeltypebuttons:last-child {
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0; 
        margin:2px;
    }

    .labeltypebuttons:not(:first-child):not(:last-child) {
        border-radius: 0;
    }

    .labeltypebuttons::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 103%;
        height: 100%;
        border-radius: 8px;
        background: linear-gradient(
            to bottom,
            transparent 10%,
            transparent,
            transparent 90%
        );
        transition: all 0.2s ease;
        z-index: -1;
    }

    .labeltypebuttons:has(input[type='radio']:checked)::before {
        background: linear-gradient(
            to bottom,
            transparent 10%,
            rgba(52, 152, 219, 0.1),
            transparent 90%
        );
    }

    .labeltypebuttons .text {
        color: #34495e;
        font-size: 15px;
        line-height: 12px;
        padding: 0px;
        font-weight: 700;
        text-transform: uppercase;
        transition: all 0.2s ease;
    }

    .labeltypebuttons input[type='radio']:checked + .text {
        color: var(--accent-color);
        text-shadow: 0px 0px 8px rgba(52, 152, 219, 0.3);
    }
    
        .clock-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 20px 0;
            width: 100%;
        }
        
        .clock {
            width: 280px;
            height: 280px;
            border-radius: 50%;
            position: relative;
            background: var(--primary-color);
            box-shadow: 8px 8px 16px var(--shadow-dark), 
                        -8px -8px 16px var(--shadow-light);
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px 0;
        }
        
        .clock::before {
            content: '';
            position: absolute;
            width: 92%;
            height: 92%;
            border-radius: 50%;
            background: var(--primary-color);
            box-shadow: inset 8px 8px 16px var(--shadow-dark), 
                        inset -8px -8px 16px var(--shadow-light);
            z-index: 1;
        }
        
        .clock-center {
            position: absolute;
            width: 18px;
            height: 18px;
            background: var(--accent-color);
            border-radius: 50%;
            z-index: 10;
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
        }
        
        .hour-hand, .minute-hand, .second-hand {
            position: absolute;
            transform-origin: bottom center;
            border-radius: 10px;
            z-index: 2;
            transition: transform 0.5s cubic-bezier(0.4, 2.3, 0.8, 1);
        }
        
        .hour-hand {
            width: 7px;
            height: 65px;
            background: var(--text-color);
            bottom: 50%;
            left: calc(50% - 3.5px);
        }
        
        .minute-hand {
            width: 5px;
            height: 95px;
            background: var(--text-color);
            bottom: 50%;
            left: calc(50% - 2.5px);
        }
        
        .second-hand {
            width: 2px;
            height: 110px;
            background: var(--accent-color);
            bottom: 50%;
            left: calc(50% - 1px);
            transition: none;
        }
        
        .hour-markers {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 3;
        }
        
        .hour-marker {
            position: absolute;
            width: 3px;
            height: 12px;
            background: var(--text-color);
            left: calc(50% - 1.5px);
            transform-origin: 50% 140px;
        }
        
        .hour-numbers {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 4;
        }        

        .hour-number {
            position: absolute;
            font-size: 16px;
            font-weight: bold;
            color: var(--text-color);
            text-align: center;
            width: 30px;
            height: 30px;
            line-height: 30px;
            margin-left: -15px;
            margin-top: -15px;
        }

        .limitedtime-hand, .reallimitedtime-hand {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(0deg);
            z-index: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .limitedtime-hand svg, .reallimitedtime-hand svg {
            display: block;
        }
        /* ریسپانسیو */
        @media (max-width: 480px) {
            .clock {
                width: 240px;
                height: 240px;
            }
            
            .hour-hand { height: 55px; }
            .minute-hand { height: 80px; }
            .second-hand { height: 95px; }
            
            .hour-marker {
                transform-origin: 50% 120px;
            }
        }
        
    .date-picker-container {
        position: relative;
        width: 100%;
    }

    .date-input-wrapper {
        margin-bottom: 20px;
    }

    .date-input {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        transition: var(--transition);
        margin-top: 8px;
        min-height: 54px;
    }

    .date-input:hover {
        box-shadow: inset 4px 4px 8px var(--shadow-dark), 
                    inset -4px -4px 8px var(--shadow-light);
    }

    .date-icon {
        font-size: 18px;
        color: var(--accent-color);
    }

    .date-picker-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        justify-content: center ;
        align-items: top;
        border-radius:25px;
    }

    .date-picker-card {
        width: 90%;
        max-width: 350px;
        padding: 20px;
        margin-top: 30px;
        margin-bottom: 600px;
        animation: modalAppear 0.3s ease;
    }

    @keyframes modalAppear {
        from {
            opacity: 0;
            transform: scale(0.8) translateY(-20px);
        }
        to {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }

    .date-picker-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid var(--shadow-dark);
    }

    .current-date {
        font-weight: 600;
        color: var(--accent-color);
        font-size: 16px;
    }

    .nav-btn {
        background: var(--primary-color);
        border: none;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-color);
        font-weight: bold;
        transition: var(--transition);
        box-shadow: 4px 4px 8px var(--shadow-dark), 
                    -4px -4px 8px var(--shadow-light);
    }

    .nav-btn:hover {
        box-shadow: inset 2px 2px 4px var(--shadow-dark), 
                    inset -2px -2px 4px var(--shadow-light);
    }

    .week-days {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 5px;
        margin-bottom: 10px;
        text-align: center;
    }

    .week-day {
        font-weight: 600;
        color: var(--accent-color);
        font-size: 12px;
        padding: 8px 0;
    }

    .days-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 5px;
    }

    .day {
        aspect-ratio: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        cursor: pointer;
        transition: var(--transition);
        font-size: 16px;
        font-weight: bold;
        background: var(--primary-color);
        box-shadow: 2px 2px 4px var(--shadow-dark), 
                    -2px -2px 4px var(--shadow-light);
    }

    .day:hover {
        box-shadow: inset 2px 2px 4px var(--shadow-dark), 
                    inset -2px -2px 4px var(--shadow-light);
    }

    .day.current-month {
        color: var(--text-color);
    }

    .day.other-month {
        color: var(--text-light);
        opacity: 0.5;
    }

    .day.today {
        background: var(--accent-color);
        color: white;
        box-shadow: 0 0 10px rgba(106, 137, 204, 0.5);
    }

    .day.selected {
        background: var(--accent-color);
        color: white;
        box-shadow: 0 0 15px rgba(106, 137, 204, 0.7);
    }

    .day.disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

    .date-picker-footer {
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px solid var(--shadow-dark);
    }

    .date-picker-footer .btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    @media (max-width: 480px) {
    .date-picker-card {
        width: 95%;
        padding: 15px;
    }
    
    .date-picker-header {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .current-date {
        order: -1;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .date-picker-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .date-picker-footer .btn {
        width: 100%;
    }
    }
    .accordion-header {
    position: relative; 
    width: 100%;
    height: 35px;
    padding: 8px 35px 15px 15px; 
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 5px 5px 0px 0px;
    background: var(--primary-color);
    box-shadow: 5px 5px 15px var(--shadow-dark), -5px -5px 15px var(--shadow-light);
    margin-bottom: 15px;
    transition: var(--transition);
    color: var(--text-color);
    text-align: right; 
    }

    .accordion-header:active {
        box-shadow: inset 5px 5px 15px var(--shadow-dark), inset -5px -5px 15px var(--shadow-light);
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.6s cubic-bezier(1, 0, 1, 1); 
        padding: 10px 15px;
        border-radius: 5px;
        background: var(--primary-color);
        box-shadow: inset 5px 5px 15px var(--shadow-dark), inset -5px -5px 15px var(--shadow-light);
        margin-top: -20px;
        margin-bottom: 10px;
        color: var(--text-color);
    }

    .accordion-content p {
        margin: 0px 15px;
        color: var(--text-light);
    }

    .accordion-header::after {
        content: '▼';
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%) rotate(0deg);
        font-size: 0.5rem;
        transition: transform 0.3s ease-in-out;
    }

    .accordion-header.active::after {
        transform: translateY(-50%) rotate(180deg);
    }

    /* radio-input */
.radio-input input {
  display: none;
}

.radio-input {
  direction: ltr;
  --container_width: 150px;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 10px;
  background-color: var(--accent-color);
  color: #000000;
  width: var(--container_width);
  overflow: hidden;
  border: 1px solid rgba(53, 52, 52, 0.226);
}

.radio-input label {
  width: 100%;
  padding: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  font-weight: 600;
  letter-spacing: -1px;
  font-size: 14px;
}

.selection {
  display: none;
  position: absolute;
  height: 100%;
  width: calc(var(--container_width) / 2);
  z-index: 0;
  left: 0;
  top: 0;
  transition: .15s ease;
}

.radio-input label:has(input:checked) {
  color: #fff;
}

.radio-input label:has(input:checked) ~ .selection {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.45) 0%,
    var(--special-color) 40%,
    rgba(0,0,0,0.35) 100%
  );
  display: inline-block;
}

.radio-input label:nth-child(1):has(input:checked) ~ .selection {
  transform: translateX(calc(var(--container_width) * 0/3));
}

.radio-input label:nth-child(2):has(input:checked) ~ .selection {
  transform: translateX(calc(var(--container_width) * 1/2));
}

.radio-input label:nth-child(3):has(input:checked) ~ .selection {
  transform: translateX(calc(var(--container_width) * 2/2));
}
/* radio-input */
    
.neo-avatar {
  border-radius: 50%;
  background: #e0e0e0;
  box-shadow:
    8px 8px 16px #bebebe,
   -8px -8px 16px #ffffff;
}

.neo-avatar img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 50%;
}

.neo-avatar-in {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #e0e0e0;

  box-shadow:
    inset 10px 10px 20px rgba(0,0,0,0.25),
    inset -10px -10px 20px rgba(159, 119, 167, 0.9),
    inset 2px 2px 4px rgba(0,0,0,0.35),
    inset -2px -2px 4px rgba(255,255,255,0.8);
}

.neo-avatar-in img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
/*نمودار درصد حضور */
    .neu-circle {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #e0e0e0;
    box-shadow:
        14px 14px 28px #bebebe,
    -14px -14px 28px #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    }

    .pie {
    width: 180px;
    height: 180px;
    transform: rotate(-90deg);
    }

    circle {
    fill: none;
    stroke-linecap: round;
    }
/*نمودار درصد حضور */
    .hrshadow{
        border:none;
        height: 20px;
        width: 90%;
        height: 50px;
        margin-top: 0;
        border-bottom: 1px solid transparent;
        box-shadow: 0 20px 20px -20px var(--text-light);
        margin: -50px auto 10px; 
    }
    .hrupshadow{
        border:none;
        height: 20px;
        width: 90%;
        height: 50px;
        margin-top: 0;
        border-bottom: 1px solid transparent;
        box-shadow: 0 -20px 20px -20px var(--text-light);
        margin: 10px auto 10px; 
    }    
    .tech-table {
        width: 100%;
        border-collapse: collapse;
        border: 1px dotted var(--text-light);
        text-align: left;
        margin: 10px 0;
    }
    .tech-table td {
        padding: 8px 12px;
        border: 1px dotted var(--text-light);
    }
    .tech-table tr:nth-child(even) {
        background-color: var(--shadow-light);
    }
    .tech-table tr:hover {
        background-color: var(--shadow-light);
    }

.noprintable{display:block;}
    @media only print {
    .noprintable{	display: none;
	}
}
