/* ZoomAmerica Area Specific Styles */

/* Like button styling */
.nextdoor-action-btn.liked,
.nextdoor-comment-action.liked {
    color: #2563eb !important;
    background-color: rgba(37, 99, 235, 0.1);
}

.nextdoor-action-btn.liked i,
.nextdoor-comment-action.liked i {
    color: #2563eb !important;
}

/* Hover effects for action buttons */
.nextdoor-action-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s ease;
}

.nextdoor-comment-action:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s ease;
}

/* Delete button specific styling */
.nextdoor-action-btn.text-danger:hover,
.nextdoor-comment-action.text-danger:hover {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545 !important;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .nextdoor-post-actions {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .nextdoor-action-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .nextdoor-comment-action {
        padding: 6px 8px;
        font-size: 12px;
    }
}

/* Animation for like button */
.nextdoor-action-btn.liked i,
.nextdoor-comment-action.liked i {
    animation: heartbeat 0.3s ease-in-out;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Disabled button styling */
.nextdoor-action-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: transparent;
}

.nextdoor-action-btn:disabled:hover {
    background-color: transparent;
}
