.hype-energize-search-container {
    /* max-width: 600px; */
    margin: 40px auto;
    padding: 0;
    /* background: #fff; */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hype-energize-search-wrapper h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
}

.hype-energize-search-input-wrapper {
    position: relative;
    margin-bottom: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.hype-energize-search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 25px;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.hype-energize-search-input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.hype-energize-search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #666;
    pointer-events: none;
}

.hype-energize-search-results {
    /* background: #f8f9fa; */
    /* border: 1px solid #dee2e6; */
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 20px;
}

.hype-energize-search-status {
    margin: 0;
    color: #666;
    font-size: 14px;
    text-align: center;
}

#hype-energize-search-table-wrapper {
    margin-top: 40px;
}

#hype-energize-search-table {
    border-collapse: collapse;
    /* background: #fff; */
}
.hype-energize-highlight {
    background-color: #fff3cd !important;
    border-left: 4px solid #ffc107 !important;
}

.hype-energize-highlight td {
    animation: highlightFade 2s ease-in-out;
}

@keyframes highlightFade {
    0% { background-color: #ffc107; }
    100% { background-color: transparent; }
}

.hype-energize-search-wrapper table.dataTable {

    border: none;

    font-size: 1.5rem;

    position:relative;

    thead ,tbody td.name{
        font-family: "Amazing views", Sans-serif;
    }
    thead th.sorting::before{
        top: 8px;
        right: -5px;
    }
    thead th.sorting::after {
        right: -5px;
    }

    td {
        box-shadow: none !important;
    }
    tbody tr{
        background: linear-gradient(90deg, black 80%, #33343e 100%);
        border-bottom: 25px solid black;
    }
    tbody .percent {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-family: "Digital 7", Sans-serif;
        font-size: 2rem;
        gap: 10px;
    }
    tbody .percent progress[value]{
        box-shadow: 0px 1px 3px rgb(255 255 255 / 35%);
        height: 12px;
        border: 3px solid #000;
        border-radius: 8px;
        -webkit-appearance: none;
        appearance: none;
    }
    progress[value]::-webkit-progress-value {
        background: linear-gradient(90deg, #018472 0%, #7BD966 100%);
        border-radius: 6px;
    }
    progress[value]::-webkit-progress-bar {
        background: #000;
        border-radius: 8px;
    }

}

/* Responsive design */
@media (max-width: 768px) {
    .hype-energize-search-container {
        margin: 10px;
    }
    
    .hype-energize-search-input {
        padding: 12px 40px 12px 15px;
        font-size: 14px;
    }
    #hype-energize-search-table_wrapper{
        overflow: scroll;
    }
}