.workshop-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px 20px 20px;
}

.workshop-header {
    text-align: left;
    margin-bottom: 30px;
}

.workshop-name {
    font-size: 1.5rem;
    text-align: left;
    font-family: 'sst-roman', sans-serif !important;
    margin-bottom: 10px;
}

.workshop-level span {
    font-size: 1.125rem;
    text-align: center;
    color: white;
    font-family: 'sst-heavy', sans-serif !important;
    background-color: black;
    padding: 4px 12px;
    text-transform: uppercase;
}

.workshop-content {
    padding-bottom: 30px;
}

    .workshop-content .title {
        padding: 0 20px 0px 20px;
        font-size: 18px;
        font-weight: bold;
        text-align: left;
        cursor: pointer;
    }


.proficiency-badge {
    padding: 5px;
    background-color: black;
    color: white;
    width: 100px;
    text-align: center;
    font-size: 16px;
    margin: 0px 0px 50px 20px;
}

.collapsible {
    background-color: #ffffff;
    color: #000000;
    cursor: pointer;
    padding: 10px 20px 10px 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1px;
    position: relative;
    font-weight: 500;
}

    .collapsible .title {
        font-weight: bold;
        width: 35%;
        font-size: 18px;
        text-align: left;
    }



    /* Horizontal line between title and arrow */
    .collapsible .divider {
        width: 95%;
        height: 1px;
        background-color: black;
        position: relative;
    }


.workshop-info-desc {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

.collapsible .arrow {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    padding: 3px;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.collapsible.active .arrow {
    transform: rotate(45deg);
}

.content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #ffffff;
    border-left: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

    .content p,
    .workshop-content p {
        margin: 0;
        color: black;
        line-height: 1.4;
    }

    .content h2,
    .workshop-content h2 {
        margin: 0;
        color: black;
        line-height: 1.4;
        font-size: 16px;
        font-weight: bold;
    }

    .content p:last-child {
        padding-bottom: 20px;
    }

.active::before {
    opacity: 1;
}

.btn-container {
    padding: 10px 20px 0 20px;
}

.btn-register {
    background-color: black;
    color: #ffffff;
    font-weight: bold;
    border: none;
    padding: 6px 28px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.content-padding {
    padding: 10px 20px 0 20px;
}

.workshop-btn {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: black;
    border: 1px solid black;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2sease;
    font-family: 'sst-roman', sans-serif;
    width: 100%;
}

    .workshop-btn:hover {
        background-color: black;
        color: white;
    }

.workshop-btn-black {
    padding: 0.75rem 1.5rem;
    background-color: black;
    color: white;
    border: 1px solid black;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2sease;
    font-family: 'sst-roman', sans-serif;
    width: 100%;
}

.content-inline > * {
    display: inline;
}

.col-md-7.content-inline {
    margin-right: 30px !important;
}

.border-bottomW {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.expired-btn {
    background-color: gray !important;
    cursor: not-allowed;
    border: grey;
}

.right-col .textNormal {
    padding-left: 0px !important;
    padding-right: 0px !important;
    margin-left: 20px !important;
}

@media screen and (max-width: 768px) {

    .col-md-7.content-inline {
        margin-right: 0px !important;
    }

    .workshop-content .title {
        font-size: 1rem !important;
    }

    .padding-btnW {
        padding: 20px 0 !important;
    }

    .collapsible .divider {
        width: 85%;
        height: 1px;
    }

    .content p, .workshop-content p {
        font-size: 0.875rem;
    }

    .right-col {
        margin-top: 30px;
    }

        .right-col .border-bottomW {
            margin-bottom: 0px !important;
            padding-bottom: 0px !important;
        }


        /* align Column */
        .right-col .textNormal {
            margin-left: 0px !important;
        }

    .content-padding {
        padding: 10px 0px 0 0px;
    }

    .workshop-content .title {
        padding: 0 0px 0px 0px;
    }

    .collapsible {
        padding: 10px 0px 10px 0px;
    }
}

/*Added by Amit Start*/
html[lang="vi-VN"] .workshop-name {
    font-family: 'SSTVN', sans-serif !important;
}
html[lang="vi-VN"] .workshop-btn {
    font-family: 'SSTVN', sans-serif !important;
}

html[lang="vi-VN"] .workshop-btn-black {
    font-family: 'SSTVN', sans-serif !important;
}

/*Added by Amit End*/

/*Adding Shubham Start */

html[lang="vi-VN"] .workshop-level span {
    font-family: 'SST W01 Bold', sans-serif !important;
}
/*End*/