/* =========================
   petHelper.css
   ========================= */

   #pet-helper-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

#pet-helper {
    display: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

#pet-helper:hover {
    transform: scale(1.1);
}

#remaining-helps {
    margin-top: 5px;
    color: #555;
    font-size: 14px;
    text-align: center;
}

#pet-helper-cooldown {
    font-weight: bold;
    z-index: 10;
}

.pet-energy,
.remaining-helps {
    text-align: center;
    font-size: 14px;
    margin-top: 5px;
    color: #555;
    font-weight: bold;
}
