/* Action buttons area styles */
.action-buttons {
    position: absolute;
    right: 10px;
    bottom: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 1000;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.action-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.action-icon:hover {
    background-color: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

/* Zoom effect after click */
.action-icon.clicked {
    transform: scale(1.2);
    transition: transform 0.1s ease; /* Changed to 0.1 seconds for quick recovery */
}

/* Remove active state animation effects for like button */
.action-icon:active {
    /* Remove bounce effect */
    /* transform: scale(0.95); */
}

.action-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

/* Special handling for favorite button icon */
.favorite-button img {
    filter: brightness(0) invert(1);
}

/* Remove filter in favorited state, maintain original color */
.favorite-button.favorited img {
    filter: none;
}

.action-count {
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    min-width: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2px 6px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

/* Special styles for like button */
.like-button.liked {
    background-color: rgba(255, 0, 0, 0.3);
    border-color: rgba(255, 0, 0, 0.5);
}

.like-button.liked img {
    filter: brightness(0) invert(1) hue-rotate(0deg);
}

/* Special styles for comment button */
.comment-button.active {
    background-color: rgba(0, 123, 255, 0.3);
    border-color: rgba(0, 123, 255, 0.5);
}

/* Special styles for share button */
.share-button.active {
    background-color: rgba(40, 167, 69, 0.3);
    border-color: rgba(40, 167, 69, 0.5);
}

/* Responsive design */
@media (max-width: 480px) {
    .action-buttons {
        right: 10px;
        bottom: 250px;
        gap: 15px;
    }
    
    .action-icon {
        width: 40px;
        height: 40px;
    }
       
    .action-count {
        font-size: 11px;
        padding: 1px 5px;
    }
}

/* Remove animation effects - avoid button bouncing */
/* .action-icon {
    animation: fadeInUp 0.5s ease-out;
}

.action-icon:nth-child(1) { animation-delay: 0.1s; }
.action-icon:nth-child(2) { animation-delay: 0.2s; }
.action-icon:nth-child(3) { animation-delay: 0.3s; }
.action-icon:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} */ 