#chartTable {
    width: 100%;
}

#chartTable thead {
    position: sticky;
    height: 80px;
    z-index: 12;
    /* top: 87px; */
    /* background-color: #e9eae2; */
    background-color: #fff;
}

.uploaded-charts {
    /* width: 90%; */
}

.music-chart-block {
    /* border: 5px solid white; */
    padding: 10px;
    font: 700;
    font-size: 24px;
    color: white;
    background-color: gray;
}

.custom-file-upload {
    display: flex;
    align-items: center;
}

.custom-file-label {
    background-color: #0073aa;
    color: white;
    padding: 7px 20px;
    cursor: pointer;
    border-radius: 4px;
    margin-right: 10px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.custom-file-label:hover {
    background-color: #005177;
}

input[type="file"] {
    display: none;
    /* Hide the actual file input */
}

#file-name {
    font-size: 14px;
    font-family: Arial, sans-serif;
    color: #555;
}

.view-tr {
    font-weight: 700;
}

#chart-week {
    padding: 10px;
}

.track-title {
    text-decoration: none;
    color: black;
    font-weight: 600;
}

.dashicons-update {
    animation: spin 1s infinite linear;
}

.position-compare {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    justify-content: space-evenly;
    padding: 6px 8px;
    border-radius: 15px;
    margin-left: 8px;    
    font-size: 12px;
}

.feat-songs {
    padding: 6px 8px;
    border-radius: 15px;    
    font-size: 12px;
}

@media (max-width: 1024px) {}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

select.dt-input[id^="dt-length"] {
  padding-right: 1rem !important;
}