 /*Styling for the full-charge-time-bar shortcode */
.full-charge-time-bar-wrapper {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 10px;
}
.full-charge-time-label {
    font-size: 12px;
    font-weight: 500;
}
.full-charge-time-container {
    background: #e0e0e0;
    width: 100%;
    height: 30px;
    overflow: hidden;
}
.charging-bar {
    transition: width 1.5s ease-in-out;
}
.full-charge-time-info {
    font-size: 12px;
    margin-top: 3px;
}


 /*Styling for the thirty-min-charge-bar shortcode */
.thirty-min-charge-wrapper {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 10px;
}
.thirty-min-charge-label {
    font-size: 12px;
    font-weight: 500;
}
.thirty-min-charge-container {
    background: #e0e0e0;
    width: 100%;
    height: 30px;
    overflow: hidden;
}
.thirty-bar {
    transition: width 1.5s ease-in-out;
}
.thirty-min-charge-info {
    font-size: 12px;
    margin-top: 3px;
}




 /*Styling for the battery-backup-hours-bar shortcode */
.battery-backup-wrapper {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 10px;
}
.battery-backup-label {
    font-size: 12px;
    font-weight: 500;
}
.battery-backup-container {
    background: #e0e0e0;
    width: 100%;
    height: 30px;
    overflow: hidden;
}
.battery-backup-bar {
    transition: width 1.5s ease-in-out;
}
.battery-backup-info {
    font-size: 12px;
    margin-top: 3px;
}




.acf-circular-ratings-wrapper {
    display: flex;
    gap: 10px;
    justify-content: space-around;
    align-items: center;
    padding: 0px 0;
}

.acf-circular-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #DBDADA;
    padding: 0px;
    background: conic-gradient(var(--fill-color) 0deg, #DBDADA 0deg);
    animation: fillRing 2.5s ease-out forwards;
}

@keyframes fillRing {
    from {
        background: conic-gradient(var(--fill-color) 0deg, #DBDADA 0deg);
    }
    to {
        background: conic-gradient(var(--fill-color) var(--fill-angle), #DBDADA var(--fill-angle));
    }
}

.acf-icon-inner {
    width: 40px;
    height: 40px;
    background-color: #662020;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.remix-icon {
    font-family: 'remixicon';
    font-size: 30px;
    display: block;
}


 /*Styling for the device-score-bars shortcode */
.device-score-bars {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}
.score-bar {
    flex: 1 1 calc(50% - 10px); /* Two columns */
    box-sizing: border-box;
}
.score-label {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-family: Roboto;
    font-weight: 600;
    margin-bottom: 1px;
    color: #000;
}
.bar-container {
    width: 100%;
    height: 8px;
    background-color: #f5f5f5;
    border-radius: 4px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    background: #4a90e2;
    width: 0%;
    transition: width 1s ease-in-out;
}
@media (max-width: 768px) {
    .score-bar {
        flex: 1 1 100%; /* One column */
    }
}



 /*Styling for the pubg-graphics-bar shortcode */
.pubg-graphics-wrapper {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 10px;
}
.pubg-graphics-label {
    font-size: 12px;
    font-weight: 500;
}
.pubg-graphics-container {
    background: #e0e0e0;
    width: 100%;
    height: 30px;
    overflow: hidden;
}
.pubg-bar {
    transition: width 1.5s ease-in-out;
}
.pubg-graphics-info {
    font-size: 12px;
    margin-top: 3px;
}



