:root {
    --equ-primary-color: #ff8a00;
    --equ-primary-dark: #ff5e00;
    --equ-gray-500: #6c757d;
}

#equ_section .equ_header {
    text-align: center;
    margin-bottom: 25px;
}

#equ_section .equ_header i {
    margin-bottom: 20px;
    font-size: 48px;
    color: var(--equ-primary-color);
}

#equ_section .equ_header h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

#equ_section .equ_header p {
    font-size: 14px;
    color: var(--equ-gray-500);
}

#equ_section .equ_btn {
    background: var(--equ-primary-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#equ_section .equ_btn:hover {
    background: var(--equ-primary-dark);
}

#equ_section #equ_qrcode_result img {
    border: 1px solid #ddd;
    border-radius: 2px;
}

#equ_section table td a {
    color: var(--equ-primary-color);
    text-decoration: none;
    font-size: 14px;
}

#equ_section table img.equ_qrcoede_img {
    width: 100px;
    height: 100px;
    border: 1px solid #ddd;
    border-radius: 2px;
}

#equ_section table {
    margin-bottom: 0px;
    margin-top: 5px;
}

#equ_section .dt-length,
#equ_section .dt-search {
    display: flex;
    align-items: center;
    min-width: 250px;
    gap: 10px;
}

#equ_section .dt-search{
    justify-content: end;
}
#equ_section .dt-length select,
#equ_section .dt-search input {
    padding: 5px 10px;
    max-width: 100px;
    border: 1px solid #ddd;
    font-size: 14px;
}


#equ_section .dt-search input{
    max-width: 160px;
}


@media (max-width: 768px) {
    #equ_section table td, #equ_section table th{
        min-width: 100px;
        max-width: 200px;
    }

    #equ_section table{
        display: block;
        overflow-x: auto;
    }

    #equ_section .dt-search, 
    #equ_section .dt-length{
        justify-content: center;
    }

    #equ_section .dt-search{
        margin-top: 10px;
    }
    
    .entry-content #equ_section ul{
        padding: 0;
    }
}